예제 #1
0
 public void Pop(IIsUpdatable updatable)
 {
     if (updatable == null)
     {
         return;
     }
     Updatables.Remove(updatable);
 }
예제 #2
0
 public void Push(IIsUpdatable updatable)
 {
     if (updatable == null)
     {
         return;
     }
     Updatables.Add(updatable);
 }