/+junk/invaders_vala

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/%2Bjunk/invaders_vala

« back to all changes in this revision

Viewing changes to src/MovementDelta.vala

  • Committer: Gustav Hartvigsson
  • Date: 2012-10-09 21:59:24 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20121009215924-bsntg7a4ocaxkhoh
Implimented Time based movement...

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
public struct invadersGame.MovementDelta {
 
3
  float x;
 
4
  float y;
 
5
  
 
6
  public string to_string() {
 
7
    return "x:" + x.to_string() + "  y:" + y.to_string();
 
8
  }
 
9
}