mirror of https://github.com/axmolengine/axmol.git
17 lines
279 B
C
17 lines
279 B
C
|
//
|
||
|
// lualoadexts.h
|
||
|
// Mystic-Fish-Puzzle
|
||
|
//
|
||
|
// Created by on 11-10-3.
|
||
|
// Copyright 2011年 __MyCompanyName__. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#ifndef __LUALOADEXTS_H_
|
||
|
#define __LUALOADEXTS_H_
|
||
|
|
||
|
#include "lauxlib.h"
|
||
|
|
||
|
void luax_initpreload(lua_State *L);
|
||
|
|
||
|
#endif // __LUALOADEXTS_H_
|