GamePlayer.cs 334 B

1234567891011121314151617181920212223
  1. namespace Game
  2. {
  3. public class GamePlayer
  4. {
  5. public int playerId;
  6. public string playerName;
  7. public string playerAvatar;
  8. public int cockId;
  9. public int hp;
  10. public int runTimeHp;
  11. public bool IsLocalPlayer()
  12. {
  13. return false;
  14. }
  15. }
  16. }