polserver/pol-core/bscript/compiler/representation/ExportedFunction.h

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