예제 #1
0
파일: Actors.cs 프로젝트: volheim/Piperlok
 public abstract void OnCollision(Objects other);
예제 #2
0
 public override void OnCollision(Objects other)
 {
     //throw new NotImplementedException();
 }
예제 #3
0
파일: Actors.cs 프로젝트: volheim/Piperlok
 public bool IsCollidingWith(Objects other)
 {
     return(CollisionBox.IntersectsWith(other.CollisionBox));
 }