mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 16:30:05 +00:00
15 lines
241 B
C++
15 lines
241 B
C++
#pragma once
|
|
|
|
namespace scwx
|
|
{
|
|
namespace common
|
|
{
|
|
namespace Characters
|
|
{
|
|
|
|
constexpr char DEGREE = static_cast<char>(0xb0);
|
|
constexpr char ETX = static_cast<char>(0x03);
|
|
|
|
} // namespace Characters
|
|
} // namespace common
|
|
} // namespace scwx
|