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