コード例 #1
0
 public override bool TestCollision(PotatoMovable other)
 {
     return(BoundingBox.Intersects(other.BoundingBox));
 }
コード例 #2
0
ファイル: PotatoEntity.cs プロジェクト: SuperMenezes/Prog1T2
 public virtual bool TestCollision(PotatoMovable other)
 {
     return(false);
 }