public EzGetEventResult(
     GetEventResult result
     )
 {
     if (result.item != null)
     {
         Item = new EzEvent(result.item);
     }
 }
Пример #2
0
 public void Play(EzEvent ezEvent)
 {
     this.enabled = true;
     Timer        = 0f;
     foreach (EzComponent component in components)
     {
         foreach (EzAction action in ezEvent.Actions)
         {
             component.AddAction(action);
         }
     }
 }