~gustav-hartvigsson/+junk/invaders_vala

« back to all changes in this revision

Viewing changes to src/main.vala

  • Committer: Gusatv Hartvigsson
  • Date: 2011-12-29 20:10:21 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20111229201021-sp1csy430cb7icv2
* initial code of a Vala port of invaders...
*  BUG: event handlingn not working.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
using SDL;
 
2
 
 
3
 
 
4
namespace invadersGame{
 
5
  int main(string[] args){
 
6
    
 
7
    var g = new invadersGame.Game();
 
8
    g.mainLoop();
 
9
    
 
10
    return 0;
 
11
  }
 
12
}