Ejemplo n.º 1
0
 public CommandInstance(GameObjects.Events.EventPage page, List <EventCommand> commandList, int listIndex = 0)
 {
     Page         = page;
     CommandList  = commandList;
     CommandIndex = listIndex;
 }
Ejemplo n.º 2
0
 public CommandInstance(GameObjects.Events.EventPage page, Guid commandListId, int listIndex = 0)
 {
     Page         = page;
     CommandList  = page.CommandLists[commandListId];
     CommandIndex = listIndex;
 }
Ejemplo n.º 3
0
 public CommandInstance(GameObjects.Events.EventPage page, int listIndex = 0)
 {
     Page         = page;
     CommandList  = page.CommandLists.Values.First();
     CommandIndex = listIndex;
 }