public CollisionContext(Body one, Body two) { this.one = one; this.two = two; }
internal void DispatchCollided(Body other) { if (OnCollided != null) OnCollided(other); }
internal void BodyCreated(int id, Body body) { bodies.Add(id, body); }