Esempio n. 1
0
 public DialogsClass()
 {
     this.DialogsCount = new IntVar();
     this.Items        = new List <VarStruct>();
 }
Esempio n. 2
0
 public JournalClass()
 {
     this.EntriesVar  = new IntVar();
     this.QuestsCount = new IntVar();
     this.Quests      = new List <Quest>();
 }
Esempio n. 3
0
 public CCSManager()
 {
     this.BeginBlockLength = new ShortVarWithoutIndex();
     this.PoolCount        = new IntVar();
     this.EndBlockLength   = new ShortVarWithoutIndex();
 }
Esempio n. 4
0
 public QuestNote()
 {
     this.NoteLength = new IntVar();
 }
Esempio n. 5
0
 public InstancesClass()
 {
     this.InstancesCount = new IntVar();
     this.Items          = new List <InstVar>();
 }
Esempio n. 6
0
 public TimeClass()
 {
     this.Days    = new IntVar();
     this.Hours   = new IntVar();
     this.Minutes = new IntVar();
 }
Esempio n. 7
0
 public VarStruct()
 {
     this.CaptionLength  = new IntVar();
     this.VarValuesCount = new IntVar();
     this.VarValues      = new List <IntVar>();
 }
Esempio n. 8
0
 public InstVar()
 {
     this.Told          = new IntVar();
     this.CaptionLength = new IntVar();
 }