mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
20 lines
450 B
C++
20 lines
450 B
C++
#ifndef POLSERVER_EXPORTEDFUNCTION_H
|
|
#define POLSERVER_EXPORTEDFUNCTION_H
|
|
|
|
#include <string>
|
|
|
|
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
|