Files
2025-12-22 17:53:59 +07:00

16 lines
456 B
C#

namespace BrewMonster
{
partial class CECPlayer
{
protected int m_iMoneyCnt; // Amount of money the player has
protected int m_iMaxMoney;
public int GetMoneyAmount() { return m_iMoneyCnt; }
public int GetMaxMoneyAmount() { return m_iMaxMoney; }
public byte GetShapeMask()
{
// restore the original data from 8~15 bit
return (byte)((m_iShape & 0xff00) >> 8);
}
}
}