22 lines
337 B
C++
22 lines
337 B
C++
#ifndef PUBLICATTRIBUTES_HPP
|
|
#define PUBLICATTRIBUTES_HPP
|
|
|
|
namespace PublicAttributes
|
|
{
|
|
enum Theme {
|
|
Dark = 0, // 深色
|
|
Light // 浅色
|
|
};
|
|
enum DeviceType {
|
|
Pc = 0,
|
|
Android,
|
|
};
|
|
enum Model {
|
|
Table = 0, // 平板模式
|
|
PcModel, // PC模式
|
|
};
|
|
|
|
} // namespace PublicAttributes
|
|
|
|
#endif // PUBLICATTRIBUTES_HPP
|