GamePlayer.cs 303 B

123456789101112131415161718192021
  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 bool IsLocalPlayer()
  11. {
  12. return false;
  13. }
  14. }
  15. }