Advertisement
Guest User

Untitled

a guest
Nov 21st, 2019
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. namespace FightingArena
  2. {
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Text;
  6.  
  7. public class Stat
  8. {
  9. public int Strength { get; set; }
  10. public int Flexibility { get; set; }
  11. public int Agility { get; set; }
  12. public int Skills { get; set; }
  13. public int Intelligence { get; set; }
  14.  
  15. public Stat(int strength, int flexibility, int agility, int skills, int intelligence)
  16. {
  17. this.Strength = strength;
  18. this.Flexibility = flexibility;
  19. this.Agility = agility;
  20. this.Skills = skills;
  21. this.Intelligence = intelligence;
  22.  
  23. }
  24. }
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement