23 lines
399 B
C
23 lines
399 B
C
// JoeyLib umbrella header.
|
|
//
|
|
// Game code includes this single file:
|
|
// #include <joey/joey.h>
|
|
|
|
#ifndef JOEYLIB_H
|
|
#define JOEYLIB_H
|
|
|
|
#include "platform.h"
|
|
#include "types.h"
|
|
#include "core.h"
|
|
#include "surface.h"
|
|
#include "palette.h"
|
|
#include "asset.h"
|
|
#include "draw.h"
|
|
#include "tile.h"
|
|
#include "present.h"
|
|
#include "input.h"
|
|
#include "audio.h"
|
|
#include "sprite.h"
|
|
#include "debug.h"
|
|
|
|
#endif
|