Reorder SDKCallType enum for better compatibility with existing plugins.

This commit is contained in:
Nick Hastings
2021-10-26 17:32:02 -04:00
parent ffc23a1a1e
commit 4b58b9f673
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -58,10 +58,10 @@ enum SDKCallType
SDKCall_Static, /**< Static call */
SDKCall_Entity, /**< CBaseEntity call */
SDKCall_Player, /**< CBasePlayer call */
SDKCall_Server, /**< CBaseServer call */
SDKCall_GameRules, /**< CGameRules call */
SDKCall_EntityList, /**< CGlobalEntityList call */
SDKCall_Raw /**< |this| pointer with an arbitrary address */
SDKCall_Raw, /**< |this| pointer with an arbitrary address */
SDKCall_Server /**< CBaseServer call */
};
enum SDKLibrary