Advertisement
Guest User

Untitled

a guest
Oct 9th, 2015
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. public class Player
  2. {
  3. public string Class { get; set; }
  4. public int ClassLevel { get; set; }
  5. public string Name { get; set; }
  6. public int UserId { get; set; }
  7. public int health { get; set; }
  8. public int Radiation { get; set; }
  9. public int Oxygen { get; set; }
  10. public int Money { get; set; }
  11. }
  12.  
  13. class Program
  14. {
  15. public static Player[] players;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement