mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
14 lines
268 B
C++
14 lines
268 B
C++
#ifndef POLSERVER_USERFUNCTIONINCLUSION_H
|
|
#define POLSERVER_USERFUNCTIONINCLUSION_H
|
|
|
|
namespace Pol::Bscript::Compiler
|
|
{
|
|
enum class UserFunctionInclusion
|
|
{
|
|
ReferencedOnly,
|
|
All
|
|
};
|
|
|
|
} // namespace Pol::Bscript::Compiler
|
|
|
|
#endif // POLSERVER_USERFUNCTIONINCLUSION_H
|