#ifndef SCORE_H #define SCORE_H class Score { public: int han; int fu; //! Constructor. Score(int han_ = 0, int fu_ = 0); //! Calculate base points. int base_points(); //! Score paid upon ron. (4 BP) int ron(); //! Score paid upon ron by east. (6 BP) int ron_east(); //! Score paid by others upon tsumo by others. (BP) int tsumo(); //! Score paid by east upon tsumo by others or others upon tsumo by east. (2 BP) int tsumo_east(); }; #endif