1234567891011121314151617181920212223 |
- namespace Game
- {
- public class GamePlayer
- {
- public int playerId;
- public string playerName;
- public string playerAvatar;
- public int cockId;
- public int hp;
- public int runTimeHp;
- public bool IsLocalPlayer()
- {
- return false;
- }
-
- }
- }
|