示例#1
0
 public override bool TestWithShape(BaseShape shape)
 {
     return(shape.TestWith(this));
 }
 //TODO 实现碰撞检测 派发
 public static bool TestShapeShape(BaseShape a, BaseShape b)
 {
     return(false);
 }