23 lines
419 B
C#
23 lines
419 B
C#
|
|
namespace BingoBrain
|
||
|
|
{
|
||
|
|
public class CardData
|
||
|
|
{
|
||
|
|
public int index;
|
||
|
|
public CardBoardEntity cardBoard;
|
||
|
|
public int num;
|
||
|
|
public bool isDelaySelect;
|
||
|
|
public bool isSelect;
|
||
|
|
public bool isCoin;
|
||
|
|
public CardPropType type;
|
||
|
|
}
|
||
|
|
|
||
|
|
public enum CardPropType
|
||
|
|
{
|
||
|
|
none=-1,
|
||
|
|
coin,
|
||
|
|
coinx3,
|
||
|
|
cash,
|
||
|
|
cashx3,
|
||
|
|
fanpai,
|
||
|
|
}
|
||
|
|
}
|