Example #1
0
 public void UpdateEvent(EventDatabase.EventType eventType, int val)
 {
     database.UpdateEvent(eventType, val);
     ApplyPredicats();
 }
Example #2
0
 public EventContainer(EventDatabase.EventType newType, int newVal)
 {
     type  = newType;
     value = newVal;
 }
Example #3
0
 public void UpdateCharacterEvent(EventDatabase.EventType eventTypeGeneral, PnjManager.CharacterType character, int val)
 {
     database.UpdateCharacterEvent(eventTypeGeneral, character, val);
     ApplyPredicats();
 }