Libsaki
Core library of Pancake Mahjong
senriyama_sera.h
1 #ifndef SAKI_GIRL_SENRIYAMA_SERA_H
2 #define SAKI_GIRL_SENRIYAMA_SERA_H
3 
4 #include "../table/girl.h"
5 
6 
7 
8 namespace saki
9 {
10 
11 
12 
17 class Sera : public GirlCrtp<Sera>
18 {
19 public:
21  void onDraw(const Table &table, Mount &mount, Who who, bool rinshan) override;
22 };
23 
24 
25 
26 } // namespace saki
27 
28 
29 
30 #endif // SAKI_GIRL_SENRIYAMA_SERA_H
Definition: mount.h:54
Definition: table.h:87
Definition: ai.cpp:18
void onDraw(const Table &table, Mount &mount, Who who, bool rinshan) override
Called when someone is about to draw a tile from the mountain.
Definition: senriyama_sera.cpp:15
Definition: senriyama_sera.h:17
Definition: girl.h:212
Definition: who.h:14