Assorted project boilerplate.
[naja.git] / naja / __main__.py
1 import sys
2
3 import pygame
4
5 from naja.options import parse_args
6
7
8 def main():
9     '''Launch the nagslang'''
10     parse_args(sys.argv)
11     pygame.display.init()
12     pygame.font.init()
13
14     raise NotImplementedError("Sorry, we haven't written a game yet.")