mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
29 lines
862 B
C
29 lines
862 B
C
// SONIC ROBO BLAST 2
|
|
//-----------------------------------------------------------------------------
|
|
// Copyright (C) 1998-2000 by DooM Legacy Team.
|
|
// Copyright (C) 1999-2020 by Sonic Team Junior.
|
|
//
|
|
// This program is free software distributed under the
|
|
// terms of the GNU General Public License, version 2.
|
|
// See the 'LICENSE' file for more details.
|
|
//-----------------------------------------------------------------------------
|
|
/// \file deh_lua.h
|
|
/// \brief Lua SOC library
|
|
|
|
#ifndef __DEH_LUA_H__
|
|
#define __DEH_LUA_H__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
boolean LUA_SetLuaAction(void *state, const char *actiontocompare);
|
|
const char *LUA_GetActionName(void *action);
|
|
void LUA_SetActionByName(void *state, const char *actiontocompare);
|
|
size_t LUA_GetActionNumByName(const char *actiontocompare);
|
|
|
|
#ifdef __cplusplus
|
|
} // extern "C"
|
|
#endif
|
|
|
|
#endif
|