Beispiel #1
0
 //Paramertized constructor, for "Open Sheet" & "Make it Easy" button on Main Window.
 Sheet(charVals fedVals)
 {
     userCharVals      = new charVals();
     userCharVals      = fedVals;
     userCharVals.name = "Traveler";
 }
Beispiel #2
0
 //Non-paramertized constructor, for "New Sheet" button on Main Window.
 Sheet()
 {
     userCharVals = new charVals();
     //I like the name traveler for rpg characters, so that is the name here.
     userCharVals.name = "Traveler";
 }