15 lines
174 B
C++
15 lines
174 B
C++
#include <STDInclude.hpp>
|
|
|
|
namespace Scripting
|
|
{
|
|
Function::Function(const char* pos)
|
|
: pos_(pos)
|
|
{
|
|
}
|
|
|
|
const char* Function::getPos() const
|
|
{
|
|
return this->pos_;
|
|
}
|
|
}
|