/*
* Game.h
* iphone-gl-app
*
* Created by John Ryland on 14/06/09.
* Copyright 2009 InvertedLogic. All rights reserved.
*
*/
#ifndef GAME_H
#define GAME_H
#include "Level.h"
class Game {
public:
// Levels
Level *levels;
// All Entities
// All Textures
// All Music
// All Maps
// All Sprites
// tick
// bg thread to load next level's resources
};
#endif // GAME_H