From 5eac985253dba1b53e6a2ecbdd88b4d5dac19933 Mon Sep 17 00:00:00 2001 From: NotAdam Date: Tue, 20 Nov 2018 22:55:17 +1100 Subject: [PATCH] remove unused defines --- src/servers/sapphire_zone/Script/NativeScriptApi.h | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/src/servers/sapphire_zone/Script/NativeScriptApi.h b/src/servers/sapphire_zone/Script/NativeScriptApi.h index 566422dc..d96f3022 100644 --- a/src/servers/sapphire_zone/Script/NativeScriptApi.h +++ b/src/servers/sapphire_zone/Script/NativeScriptApi.h @@ -10,11 +10,6 @@ #define EXPORT __attribute__((visibility("default"))) #endif -// todo: this is shit -// constant script ids for certain events -#define EVENTSCRIPT_AETHERYTE_ID 0x50000 -#define EVENTSCRIPT_AETHERNET_ID 0x50001 - namespace Core { class Framework; @@ -56,14 +51,14 @@ namespace Sapphire::ScriptAPI /*! * @brief Sets the ptr to the framework for use inside scripts - * + * * @param fw The ptr to g_fw (Core::Framework) */ virtual void setFramework( Core::Framework* fw ); /*! * @brief Returns the current ptr to framework set for the current script - * + * * @return A pointer to Core::Framework */ virtual Core::Framework* getFramework() const;