Exemplo n.º 1
0
 public static void UnRegisterShap(Shape2D Shap)
 {
     AllShapes.Remove(Shap);
 }
Exemplo n.º 2
0
 private static void DeregisterShape(Shape2D shape)
 {
     Log.DebugLog($"[SHAPE]({shape.tag}) has been removed from register");
     allShapes.Remove(shape);
 }
Exemplo n.º 3
0
 public static void RegisterShap(Shape2D Shap)
 {
     AllShapes.Add(Shap);
 }
Exemplo n.º 4
0
 private static void RegisterShape(Shape2D shape)
 {
     Log.DebugLog($"[SHAPE]({shape.tag}) has been registered");
     allShapes.Add(shape);
 }