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