mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-05 20:41:06 +00:00
9268b9f0b6
git-svn-id: https://svn.eduke32.com/eduke32@4766 1a8010ca-5511-0410-912e-c29ae57300e0
19 lines
301 B
C
19 lines
301 B
C
/* The Lunatic Interpreter, part of EDuke32. Editor stuff. */
|
|
|
|
#ifndef EDUKE32_LUNATIC_M32_H_
|
|
#define EDUKE32_LUNATIC_M32_H_
|
|
|
|
#include "lunatic.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
int Em_CreateState(L_State *estate);
|
|
void Em_DestroyState(L_State *estate);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|