mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
12 lines
345 B
C++
12 lines
345 B
C++
|
|
#include "UserFunctionBuilder.h"
|
||
|
|
|
||
|
|
namespace Pol::Bscript::Compiler
|
||
|
|
{
|
||
|
|
UserFunctionBuilder::UserFunctionBuilder( const SourceFileIdentifier& source_file_identifier,
|
||
|
|
BuilderWorkspace& workspace )
|
||
|
|
: CompoundStatementBuilder( source_file_identifier, workspace )
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
} // namespace Pol::Bscript::Compiler
|