Advertisement
Mizzzlo

Untitled

Sep 18th, 2023
751
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.59 KB | None | 0 0
  1. class Player
  2. {
  3.     public string Name { get; private set; }\
  4.     public int Age { get; private set; }
  5.  
  6.     public int WeaponDamage { get; private set; }
  7.     public float WeaponCooldown { get; private set; }
  8.  
  9.     public float MovementSpeed { get; private set; }
  10.     public float MovementDirectionX { get; private set; }
  11.     public float MovementDirectionY { get; private set; }
  12.  
  13.     public void Move()
  14.     {
  15.         //Do move
  16.     }
  17.  
  18.     public void Attack()
  19.     {
  20.         //attack
  21.     }
  22.  
  23.     public bool IsReloading()
  24.     {
  25.         throw new NotImplementedException();
  26.     }
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement