22 lines
301 B
Python
22 lines
301 B
Python
from config import *
|
|
from grid import Grid
|
|
from templates import *
|
|
from menu import *
|
|
|
|
# initializing PyGame module
|
|
pg.init()
|
|
|
|
pg.display.set_caption('Key Star AI Race')
|
|
|
|
pause = False
|
|
|
|
|
|
def main():
|
|
game_intro()
|
|
singlePlayer()
|
|
pg.quit()
|
|
quit()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main() |