2020-10-29 05:48:29 +00:00
|
|
|
// SONIC ROBO BLAST 2
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// Copyright (C) 1998-2000 by DooM Legacy Team.
|
2021-05-07 15:45:56 +00:00
|
|
|
// Copyright (C) 1999-2021 by Sonic Team Junior.
|
2020-10-29 05:48:29 +00:00
|
|
|
//
|
|
|
|
// 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__
|
|
|
|
|
|
|
|
boolean LUA_SetLuaAction(void *state, const char *actiontocompare);
|
|
|
|
const char *LUA_GetActionName(void *action);
|
|
|
|
void LUA_SetActionByName(void *state, const char *actiontocompare);
|
2020-11-29 20:54:15 +00:00
|
|
|
enum actionnum LUA_GetActionNumByName(const char *actiontocompare);
|
|
|
|
|
2020-10-29 05:48:29 +00:00
|
|
|
#endif
|