/+junk/invaders_vala

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/%2Bjunk/invaders_vala
2 by Gusatv Hartvigsson
* moved a file ( miss spelled name)
1
using SDL;
2
using SDLGraphics;
3
4
namespace invadersGame{
5
  class GameObjectInvader : GameObject{
9 by Gustav Hartvigsson
Implimented Time based movement...
6
    GameObjectInvader() {
7
      base((int16)SCREEN_HEIGHT / 2, (int16)SCREEN_WIDTH  / 2, 0, 0, 0, 200);
8
    }
2 by Gusatv Hartvigsson
* moved a file ( miss spelled name)
9
  }
10
}