1 #ifndef LSL_LOADER_H
2 #define LSL_LOADER_H
3 
4 namespace LSL {
5 
6 class UnitsyncLib;
7 
8 struct UnitsyncFunctionLoader
9 {
10 	static void LuaParser( UnitsyncLib* s );
11 	static void MMOptions( UnitsyncLib* s );
12 	static void Map( UnitsyncLib* s );
13 	static void Mod( UnitsyncLib* s );
14 	static void Basic( UnitsyncLib* s );
15 	static void Config( UnitsyncLib* s );
16 };
17 
18 } // namespace LSL
19 
20 /**
21  * \file loader.h
22  * \section LICENSE
23 Copyright 2012 by The libSpringLobby team. All rights reserved.
24 
25 Redistribution and use in source and binary forms, with or without modification, are
26 permitted provided that the following conditions are met:
27 
28    1. Redistributions of source code must retain the above copyright notice, this list of
29       conditions and the following disclaimer.
30 
31    2. Redistributions in binary form must reproduce the above copyright notice, this list
32       of conditions and the following disclaimer in the documentation and/or other materials
33       provided with the distribution.
34 
35 THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
36 INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
37 AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
38 COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
39 INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
40 NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
41 USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
42 ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
43 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
44 THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
45 **/
46 
47 #endif // LSL_LOADER_H
48