Example #1
0
 //TODO remove when we switch over to the tickable interface
 public static void RegisterUpdatable(UpdateableComponent component)
 {
     if (instance == null)
     {
         return;
     }
     instance.manager.RegisterUpdatable(component);
 }
 public void RegisterUpdatable(UpdateableComponent component)
 {
     componentsToUpdate.Add(component);
 }