townengine/src/game_api.h

15 lines
230 B
C

/* include this header in game code to get the usable parts of the engine */
#ifndef GAME_API_H
#define GAME_API_H
#include "context.h"
#include "rendering.h"
#include "audio.h"
#include "util.h"
#include <SDL2/SDL.h>
#endif