Exemple #1
0
 public BallMover(BallState state, BallHit hit)
 {
     _state = state;
     _hit   = hit;
 }
Exemple #2
0
 public Ball(BallData data, BallState state, Vertex3D initialVelocity, Player player, Table.Table table)
 {
     Data  = data;
     State = state;
     Hit   = new BallHit(this, data, state, initialVelocity, table.Data);
 }