Libsaki
Core library of Pancake Mahjong
x_yui.h
1 #ifndef SAKI_GIRL_X_YUI_H
2 #define SAKI_GIRL_X_YUI_H
3 
4 #include "../table/girl.h"
5 
6 
7 
8 namespace saki
9 {
10 
11 
12 
13 class Yui : public GirlCrtp<Yui>
14 {
15 public:
17  void onDraw(const Table &table, Mount &mount, Who who, bool rinshan) override;
18 
19 };
20 
21 
22 
23 } // namespace saki
24 
25 
26 
27 #endif // SAKI_GIRL_X_YUI_H
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: x_yui.cpp:12
Definition: mount.h:54
Definition: table.h:87
Definition: x_yui.h:13
Definition: ai.cpp:18
Definition: girl.h:212
Definition: who.h:14