mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
* all except pol * pol and includes under defines * something weird has happened * remove own folder from include searchpath * fixed remaining, adapted include style for external headers * missing include
10 lines
311 B
C++
10 lines
311 B
C++
#include "bscript/compiler/representation/ModuleFunctionDescriptor.h"
|
|
|
|
namespace Pol::Bscript::Compiler
|
|
{
|
|
ModuleFunctionDescriptor::ModuleFunctionDescriptor( std::string name, size_t parameter_count )
|
|
: name( std::move( name ) ), parameter_count( parameter_count )
|
|
{
|
|
}
|
|
|
|
} // namespace Pol::Bscript::Compiler
|