Ejemplo n.º 1
0
 public Profile(string name, string ShipType, Stats stats, SavableStats saveStats, Ship Ship, int crystals)
 {
     ProfileName         = name;
     playerStats         = stats;
     svStats             = saveStats;
     playerShip          = Ship;
     playerShip.ShipName = ShipType;
     Crystals            = crystals;
 }
Ejemplo n.º 2
0
 public void CreateProfile(string username, string ShipType, Stats stats, SavableStats saveStats, Ship ship)
 {
     UserProfile = new Profile(username, ShipType, stats, saveStats, ship, UserProfile.Crystals);
     SaveUserProfile();
 }
Ejemplo n.º 3
0
 public Ship()
 {
     svStats = new SavableStats();
 }