using SDL;
using SDLGraphics;

namespace invadersGame{
  class GameObjectInvader : GameObject{
    GameObjectInvader() {
      base((int16)SCREEN_HEIGHT / 2, (int16)SCREEN_WIDTH  / 2, 0, 0, 0, 200);
    }
  }
}
