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