mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-26 06:11:01 +00:00
23 lines
683 B
C
23 lines
683 B
C
|
// SONIC ROBO BLAST 2
|
||
|
//-----------------------------------------------------------------------------
|
||
|
// Copyright (C) 2020 by Iestyn "Monster Iestyn" Jealous.
|
||
|
// Copyright (C) 2016-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 lua_polyobjlib.c
|
||
|
/// \brief polyobject library for Lua scripting
|
||
|
|
||
|
#include "doomdef.h"
|
||
|
#include "p_local.h"
|
||
|
#include "p_polyobj.h"
|
||
|
#include "lua_script.h"
|
||
|
#include "lua_libs.h"
|
||
|
|
||
|
int LUA_PolyObjLib(lua_State *L)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|