Guest User

Stat

a guest
Jun 21st, 2019
243
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.67 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4.  
  5. namespace FightingArena
  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. }
Add Comment
Please, Sign In to add comment