Move the "sm" command to core/logic.

This commit is contained in:
David Anderson
2015-09-20 14:33:17 -07:00
parent 1a7b708df8
commit 8a7dfdbc11
6 changed files with 6 additions and 57 deletions
+1 -1
View File
@@ -35,7 +35,7 @@ namespace SourceMod {
// Add 1 to the RHS of this expression to bump the intercom file
// This is to prevent mismatching core/logic binaries
static const uint32_t SM_LOGIC_MAGIC = 0x0F47C0DE - 53;
static const uint32_t SM_LOGIC_MAGIC = 0x0F47C0DE - 54;
} // namespace SourceMod
-1
View File
@@ -69,7 +69,6 @@ struct sm_logic_t
void (*GenerateError)(IPluginContext *, cell_t, int, const char *, ...);
void (*AddNatives)(sp_nativeinfo_t *natives);
void (*RegisterProfiler)(IProfilingTool *tool);
void (*OnRootCommand)(const ICommandArgs *args);
IDataPack * (*CreateDataPack)();
void (*FreeDataPack)(IDataPack *pack);
IScriptManager *scripts;