Advertisement
kasru

BasicStats

Jun 16th, 2015
1,575
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.51 KB | None | 0 0
  1. //****** Donations are greatly appreciated.  ******
  2. //****** You can donate directly to Jesse through paypal at  https://www.paypal.me/JEtzler   ******
  3.  
  4. using UnityEngine;
  5. using System.Collections;
  6.  
  7. [System.Serializable]
  8. public class BasicStats {
  9.  
  10.     public string UserClass;
  11.     public float baseAttackPower;
  12.     public float curAttackPower;
  13.     public float baseAttackSpeed;
  14.     public float curAttackSpeed;
  15.     public float baseDodge;
  16.     public float curDodge;
  17.     public float baseHitPercent;
  18.     public float curHitPercent;
  19.  
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement