To get this branch, use:
bzr branch
http://gegoxaren.bato24.eu/bzr/%2Bjunk/invaders_vala
1
2
3
4
5
6
7
8
9
|
public struct invadersGame.MovementDelta {
float x;
float y;
public string to_string() {
return "x:" + x.to_string() + " y:" + y.to_string();
}
}
|