Skip to content

Commit 94002ef

Browse files
author
nitrocaster
committed
Convert ISE_Abstract to interface class.
1 parent 33bfd25 commit 94002ef

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/xrServerEntities/xrServer_Objects_Abstract.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ class ISE_Abstract {
121121
virtual ~ISE_Abstract() = 0;
122122

123123
Flags32 m_editor_flags;
124-
IC void set_editor_flag (u32 mask) {m_editor_flags.set (mask,TRUE);}
124+
virtual void set_editor_flag(u32 mask) = 0;
125125

126126
public:
127127
virtual void __stdcall Spawn_Write (NET_Packet &tNetPacket, BOOL bLocal) = 0;
@@ -147,6 +147,7 @@ class ISE_Abstract {
147147
};
148148

149149
IC ISE_Abstract::~ISE_Abstract() {}
150+
IC void ISE_Abstract::set_editor_flag(u32 mask) { m_editor_flags.set(mask, TRUE); }
150151

151152
#pragma warning(pop)
152153

0 commit comments

Comments
 (0)