townengine/src/game_api.h
2024-07-08 03:44:20 +03:00

14 lines
211 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 "util.h"
#include <SDL2/SDL.h>
#endif