We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33bfd25 commit 94002efCopy full SHA for 94002ef
src/xrServerEntities/xrServer_Objects_Abstract.h
@@ -121,7 +121,7 @@ class ISE_Abstract {
121
virtual ~ISE_Abstract() = 0;
122
123
Flags32 m_editor_flags;
124
- IC void set_editor_flag (u32 mask) {m_editor_flags.set (mask,TRUE);}
+ virtual void set_editor_flag(u32 mask) = 0;
125
126
public:
127
virtual void __stdcall Spawn_Write (NET_Packet &tNetPacket, BOOL bLocal) = 0;
@@ -147,6 +147,7 @@ class ISE_Abstract {
147
};
148
149
IC ISE_Abstract::~ISE_Abstract() {}
150
+IC void ISE_Abstract::set_editor_flag(u32 mask) { m_editor_flags.set(mask, TRUE); }
151
152
#pragma warning(pop)
153
0 commit comments