polserver/pol-core/bscript/compiler/representation/MethodDescriptor.cpp

13 lines
408 B
C++
Raw Permalink Normal View History

#include "bscript/compiler/representation/MethodDescriptor.h"
namespace Pol::Bscript::Compiler
{
MethodDescriptor::MethodDescriptor( unsigned name_offset, unsigned address,
unsigned function_reference_index )
: name_offset( name_offset ),
address( address ),
function_reference_index( function_reference_index )
{
}
} // namespace Pol::Bscript::Compiler