Libsaki
Core library of Pancake Mahjong
table_env_stub.h
1 #ifndef SAKI_TABLE_ENV_STUB_H
2 #define SAKI_TABLE_ENV_STUB_H
3 
4 #include "table_env.h"
5 
6 
7 
8 namespace saki
9 {
10 
11 
12 
13 class TableEnvStub : public TableEnv
14 {
15 public:
16  int hour24() const override;
17 };
18 
19 
20 
21 } // namespace saki
22 
23 
24 
25 #endif // SAKI_TABLE_ENV_STUB_H
int hour24() const override
Definition: table_env_stub.cpp:10
Definition: table_env.h:11
Definition: ai.cpp:18
Definition: table_env_stub.h:13