aboutsummaryrefslogtreecommitdiff
path: root/games/devtest/mods/basenodes/textures
Commit message (Expand)AuthorAge
* Allow overwriting media files of dependencies (#10752)DS2021-02-23
* Load media from subfolders (#9065)DS2020-08-20
* Rename “Minimal development test” to “Development Test” (#9928)Wuzzy2020-05-26
ITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #ifndef SCRIPT_HEADER #define SCRIPT_HEADER typedef struct lua_State lua_State; //#include <string> lua_State* script_init(); void script_deinit(lua_State *L); void script_error(lua_State *L, const char *fmt, ...); bool script_load(lua_State *L, const char *path); #endif