コード例 #1
0
 public override void Accept(CollisionVisitor other)
 {
     // Important: at this point we have an NullGameObject
     // Call the appropriate collision reaction
     other.VisitNullGameObject(this);
 }
コード例 #2
0
ファイル: NullGameObject.cs プロジェクト: wangjo22/Final
 public override void Accept(CollisionVisitor other)
 {
     other.VisitNullGameObject(this);
 }