#ifndef POLSERVER_EXPORTEDFUNCTION_H #define POLSERVER_EXPORTEDFUNCTION_H #include namespace Pol::Bscript::Compiler { class ExportedFunction { public: ExportedFunction( std::string, unsigned parameter_count, unsigned entrypoint_program_counter ); const std::string name; const unsigned parameter_count; const unsigned entrypoint_program_counter; }; } // namespace Pol::Bscript::Compiler #endif // POLSERVER_EXPORTEDFUNCTION_H