Advertisement
gotoheavenbro

Attribute

Sep 30th, 2014
215
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.36 KB | None | 0 0
  1. public class Attribute:BaseStat {
  2.     private string _name;
  3.     public Attribute()
  4.     {
  5.         _name = "";
  6.         NextLevel = 50;
  7.         NextLevelModifier = 1.05f;
  8.  
  9.     }
  10.     public string Name
  11.     {
  12.         get { return _name; }
  13.         set { _name = value; }
  14.     }
  15.  
  16. }
  17. public enum AttributeName
  18. {
  19.    Strength,
  20.     Agility,
  21.     Inteligence
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement