mirror of
https://github.com/daveallie/crosspoint-reader.git
synced 2026-02-05 23:27:38 +03:00
6 lines
109 B
C++
6 lines
109 B
C++
#pragma once
|
|
|
|
namespace EpdFontStyles {
|
|
enum Style { REGULAR = 0, BOLD = 1, ITALIC = 2, BOLD_ITALIC = 3 };
|
|
}
|