mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
17 lines
367 B
C++
17 lines
367 B
C++
#ifndef POLSERVER_LEGACYFUNCTIONORDER_H
|
|
#define POLSERVER_LEGACYFUNCTIONORDER_H
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
namespace Pol::Bscript::Compiler
|
|
{
|
|
struct LegacyFunctionOrder
|
|
{
|
|
std::vector<std::string> modulefunc_emit_order;
|
|
std::vector<std::string> userfunc_emit_order;
|
|
};
|
|
|
|
} // namespace Pol::Bscript::Compiler
|
|
|
|
#endif // POLSERVER_LEGACYFUNCTIONORDER_H
|