AlexRaynor

Untitled

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