mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-15 09:11:48 +00:00
21 lines
787 B
C
21 lines
787 B
C
// SONIC ROBO BLAST 2
|
|
//-----------------------------------------------------------------------------
|
|
// Copyright (C) 1998-2000 by DooM Legacy Team.
|
|
// Copyright (C) 1999-2021 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__
|
|
|
|
boolean LUA_SetLuaAction(void *state, const char *actiontocompare);
|
|
const char *LUA_GetActionName(void *action);
|
|
void LUA_SetActionByName(void *state, const char *actiontocompare);
|
|
enum actionnum LUA_GetActionNumByName(const char *actiontocompare);
|
|
|
|
#endif
|