mjc65

livingThingClass

Apr 30th, 2019
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.43 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4.  
  5. namespace OOP_RPG
  6. {
  7.     class livingThing
  8.     {
  9.         public string name;
  10.         public string race;
  11.         public string attack;
  12.  
  13.         public int str;
  14.         public int intel;
  15.         public int dex;
  16.         public int con;
  17.         public int wis;
  18.         public int cha;
  19.  
  20.         public int health;
  21.         public int magicPoints;
  22.     }
  23. }
Advertisement
Add Comment
Please, Sign In to add comment