/+junk/invaders_vala

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