mirror of
https://github.com/DrBeef/Raze.git
synced 2025-02-07 16:31:17 +00:00
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
|