2020-10-29 05:48:29 +00:00
|
|
|
// SONIC ROBO BLAST 2
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// Copyright (C) 1998-2000 by DooM Legacy Team.
|
2023-03-31 12:53:31 +00:00
|
|
|
// Copyright (C) 1999-2023 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__
|
|
|
|
|
2022-01-21 14:16:13 +00:00
|
|
|
#include "g_game.h"
|
|
|
|
#include "s_sound.h"
|
|
|
|
#include "z_zone.h"
|
|
|
|
#include "m_menu.h"
|
|
|
|
#include "m_misc.h"
|
|
|
|
#include "p_local.h"
|
|
|
|
#include "st_stuff.h"
|
2023-10-30 23:52:28 +00:00
|
|
|
#include "r_translation.h"
|
2022-01-21 14:16:13 +00:00
|
|
|
#include "fastcmp.h"
|
|
|
|
#include "lua_script.h"
|
|
|
|
#include "lua_libs.h"
|
|
|
|
|
|
|
|
#include "dehacked.h"
|
|
|
|
#include "deh_tables.h"
|
|
|
|
|
|
|
|
void LUA_UpdateSprName(const char *name, lua_Integer value);
|
2020-10-29 05:48:29 +00:00
|
|
|
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
|