18 lines
304 B
C
18 lines
304 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 "draw.h"
|
|
#include "present.h"
|
|
#include "input.h"
|
|
|
|
#endif
|