1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2024-11-08 08:47:17 +01:00

Use pragma once instead of macro guards.

This commit is contained in:
Sandu Liviu Catalin 2020-03-22 01:45:04 +02:00
parent 39d6af7687
commit 505a165d23
58 changed files with 59 additions and 235 deletions

View File

@ -1,5 +1,4 @@
#ifndef _BASE_AABB_HPP_ #pragma once
#define _BASE_AABB_HPP_
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------
#include "Base/Vector3.hpp" #include "Base/Vector3.hpp"
@ -479,5 +478,3 @@ struct AABB
}; };
} // Namespace:: SqMod } // Namespace:: SqMod
#endif // _BASE_AABB_HPP_

View File

@ -1,5 +1,4 @@
#ifndef _BASE_BUFFER_HPP_ #pragma once
#define _BASE_BUFFER_HPP_
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------
#include <cmath> #include <cmath>
@ -1022,5 +1021,3 @@ private:
}; };
} // Namespace:: SqMod } // Namespace:: SqMod
#endif // _BASE_BUFFER_HPP_

View File

@ -1,5 +1,4 @@
#ifndef _BASE_CIRCLE_HPP_ #pragma once
#define _BASE_CIRCLE_HPP_
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------
#include "SqBase.hpp" #include "SqBase.hpp"
@ -424,5 +423,3 @@ struct Circle
}; };
} // Namespace:: SqMod } // Namespace:: SqMod
#endif // _BASE_CIRCLE_HPP_

View File

@ -1,5 +1,4 @@
#ifndef _BASE_COLOR3_HPP_ #pragma once
#define _BASE_COLOR3_HPP_
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------
#include "SqBase.hpp" #include "SqBase.hpp"
@ -511,5 +510,3 @@ struct Color3
}; };
} // Namespace:: SqMod } // Namespace:: SqMod
#endif // _BASE_COLOR3_HPP_

View File

@ -1,5 +1,4 @@
#ifndef _BASE_COLOR4_HPP_ #pragma once
#define _BASE_COLOR4_HPP_
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------
#include "SqBase.hpp" #include "SqBase.hpp"
@ -511,5 +510,3 @@ struct Color4
}; };
} // Namespace:: SqMod } // Namespace:: SqMod
#endif // _BASE_COLOR4_HPP_

View File

@ -1,5 +1,4 @@
#ifndef _BASE_DYNARG_HPP_ #pragma once
#define _BASE_DYNARG_HPP_
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------
namespace SqMod { namespace SqMod {
@ -805,5 +804,3 @@ template < typename T > struct SqDynArgModFn
}; };
} // Namespace:: SqMod } // Namespace:: SqMod
#endif // _BASE_DYNARG_HPP_

View File

@ -1,5 +1,4 @@
#ifndef _BASE_QUATERNION_HPP_ #pragma once
#define _BASE_QUATERNION_HPP_
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------
#include "SqBase.hpp" #include "SqBase.hpp"
@ -452,5 +451,3 @@ struct Quaternion
}; };
} // Namespace:: SqMod } // Namespace:: SqMod
#endif // _BASE_QUATERNION_HPP_

View File

@ -1,5 +1,4 @@
#ifndef _BASE_SCRIPTSRC_HPP_ #pragma once
#define _BASE_SCRIPTSRC_HPP_
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------
#include "Base/Utility.hpp" #include "Base/Utility.hpp"
@ -79,5 +78,3 @@ public:
} // Namespace:: SqMod } // Namespace:: SqMod
#endif // _BASE_SCRIPTSRC_HPP_

View File

@ -1,5 +1,4 @@
#ifndef _BASE_SHARED_HPP_ #pragma once
#define _BASE_SHARED_HPP_
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------
#include "Base/Utility.hpp" #include "Base/Utility.hpp"
@ -255,5 +254,3 @@ template < typename T > inline void SqSetDelimiter(SQInteger c)
} }
} // Namespace:: SqMod } // Namespace:: SqMod
#endif // _BASE_SHARED_HPP_

View File

@ -1,5 +1,4 @@
#ifndef _BASE_SPHERE_HPP_ #pragma once
#define _BASE_SPHERE_HPP_
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------
#include "SqBase.hpp" #include "SqBase.hpp"
@ -423,5 +422,3 @@ struct Sphere
}; };
} // Namespace:: SqMod } // Namespace:: SqMod
#endif // _BASE_SPHERE_HPP_

View File

@ -1,5 +1,4 @@
#ifndef _BASE_VECTOR2_HPP_ #pragma once
#define _BASE_VECTOR2_HPP_
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------
#include "SqBase.hpp" #include "SqBase.hpp"
@ -356,5 +355,3 @@ struct Vector2
}; };
} // Namespace:: SqMod } // Namespace:: SqMod
#endif // _BASE_VECTOR2_HPP_

View File

@ -1,5 +1,4 @@
#ifndef _BASE_VECTOR2I_HPP_ #pragma once
#define _BASE_VECTOR2I_HPP_
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------
#include "SqBase.hpp" #include "SqBase.hpp"
@ -457,5 +456,3 @@ struct Vector2i
}; };
} // Namespace:: SqMod } // Namespace:: SqMod
#endif // _BASE_VECTOR2I_HPP_

View File

@ -1,5 +1,4 @@
#ifndef _BASE_VECTOR3_HPP_ #pragma once
#define _BASE_VECTOR3_HPP_
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------
#include "SqBase.hpp" #include "SqBase.hpp"
@ -503,5 +502,3 @@ struct Vector3
}; };
} // Namespace:: SqMod } // Namespace:: SqMod
#endif // _BASE_VECTOR3_HPP_

View File

@ -1,5 +1,4 @@
#ifndef _BASE_VECTOR4_HPP_ #pragma once
#define _BASE_VECTOR4_HPP_
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------
#include "SqBase.hpp" #include "SqBase.hpp"
@ -377,5 +376,3 @@ struct Vector4
}; };
} // Namespace:: SqMod } // Namespace:: SqMod
#endif // _BASE_VECTOR4_HPP_

View File

@ -1,5 +1,5 @@
#ifndef _CORE_HPP_ #pragma once
#define _CORE_HPP_
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------
#include "Base/Shared.hpp" #include "Base/Shared.hpp"
@ -1519,5 +1519,3 @@ protected:
}; };
} // Namespace:: SqMod } // Namespace:: SqMod
#endif // _CORE_HPP_

View File

@ -1,5 +1,4 @@
#ifndef _ENTITY_BLIP_HPP_ #pragma once
#define _ENTITY_BLIP_HPP_
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------
#include "Base/Shared.hpp" #include "Base/Shared.hpp"
@ -229,5 +228,3 @@ public:
}; };
} // Namespace:: SqMod } // Namespace:: SqMod
#endif // _ENTITY_BLIP_HPP_

View File

@ -1,5 +1,4 @@
#ifndef _ENTITY_CHECKPOINT_HPP_ #pragma once
#define _ENTITY_CHECKPOINT_HPP_
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------
#include "Base/Shared.hpp" #include "Base/Shared.hpp"
@ -328,5 +327,3 @@ public:
}; };
} // Namespace:: SqMod } // Namespace:: SqMod
#endif // _ENTITY_CHECKPOINT_HPP_

View File

@ -1,5 +1,4 @@
#ifndef _ENTITY_KEYBIND_HPP_ #pragma once
#define _ENTITY_KEYBIND_HPP_
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------
#include "Base/Shared.hpp" #include "Base/Shared.hpp"
@ -189,5 +188,3 @@ public:
}; };
} // Namespace:: SqMod } // Namespace:: SqMod
#endif // _ENTITY_KEYBIND_HPP_

View File

@ -1,5 +1,4 @@
#ifndef _ENTITY_OBJECT_HPP_ #pragma once
#define _ENTITY_OBJECT_HPP_
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------
#include "Base/Shared.hpp" #include "Base/Shared.hpp"
@ -507,5 +506,3 @@ public:
}; };
} // Namespace:: SqMod } // Namespace:: SqMod
#endif // _ENTITY_OBJECT_HPP_

View File

@ -1,5 +1,4 @@
#ifndef _ENTITY_PICKUP_HPP_ #pragma once
#define _ENTITY_PICKUP_HPP_
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------
#include "Base/Shared.hpp" #include "Base/Shared.hpp"
@ -306,5 +305,3 @@ public:
}; };
} // Namespace:: SqMod } // Namespace:: SqMod
#endif // _ENTITY_PICKUP_HPP_

View File

@ -1,5 +1,4 @@
#ifndef _ENTITY_PLAYER_HPP_ #pragma once
#define _ENTITY_PLAYER_HPP_
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------
#include "Base/Shared.hpp" #include "Base/Shared.hpp"
@ -1088,5 +1087,3 @@ public:
}; };
} // Namespace:: SqMod } // Namespace:: SqMod
#endif // _ENTITY_PLAYER_HPP_

View File

@ -1,5 +1,4 @@
#ifndef _ENTITY_VEHICLE_HPP_ #pragma once
#define _ENTITY_VEHICLE_HPP_
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------
#include "Base/Shared.hpp" #include "Base/Shared.hpp"
@ -924,5 +923,3 @@ public:
}; };
} // Namespace:: SqMod } // Namespace:: SqMod
#endif // _ENTITY_VEHICLE_HPP_

View File

@ -1,5 +1,4 @@
#ifndef _LIBRARY_CHRONO_HPP_ #pragma once
#define _LIBRARY_CHRONO_HPP_
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------
#include "SqBase.hpp" #include "SqBase.hpp"
@ -112,5 +111,3 @@ public:
}; };
} // Namespace:: SqMod } // Namespace:: SqMod
#endif // _LIBRARY_CHRONO_HPP_

View File

@ -1,5 +1,4 @@
#ifndef _LIBRARY_CHRONO_DATE_HPP_ #pragma once
#define _LIBRARY_CHRONO_DATE_HPP_
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------
#include "Library/Chrono.hpp" #include "Library/Chrono.hpp"
@ -353,5 +352,3 @@ public:
}; };
} // Namespace:: SqMod } // Namespace:: SqMod
#endif // _LIBRARY_CHRONO_DATE_HPP_

View File

@ -1,5 +1,4 @@
#ifndef _LIBRARY_CHRONO_DATETIME_HPP_ #pragma once
#define _LIBRARY_CHRONO_DATETIME_HPP_
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------
#include "Library/Chrono.hpp" #include "Library/Chrono.hpp"
@ -576,5 +575,3 @@ public:
}; };
} // Namespace:: SqMod } // Namespace:: SqMod
#endif // _LIBRARY_CHRONO_DATETIME_HPP_

View File

@ -1,5 +1,4 @@
#ifndef _LIBRARY_CHRONO_TIME_HPP_ #pragma once
#define _LIBRARY_CHRONO_TIME_HPP_
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------
#include "Library/Chrono.hpp" #include "Library/Chrono.hpp"
@ -358,5 +357,3 @@ public:
}; };
} // Namespace:: SqMod } // Namespace:: SqMod
#endif // _LIBRARY_CHRONO_TIME_HPP_

View File

@ -1,5 +1,4 @@
#ifndef _LIBRARY_CHRONO_TIMER_HPP_ #pragma once
#define _LIBRARY_CHRONO_TIMER_HPP_
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------
#include "Library/Chrono.hpp" #include "Library/Chrono.hpp"
@ -96,5 +95,3 @@ private:
}; };
} // Namespace:: SqMod } // Namespace:: SqMod
#endif // _LIBRARY_CHRONO_TIMER_HPP_

View File

@ -1,5 +1,4 @@
#ifndef _LIBRARY_CHRONO_TIMESTAMP_HPP_ #pragma once
#define _LIBRARY_CHRONO_TIMESTAMP_HPP_
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------
#include "Library/Chrono.hpp" #include "Library/Chrono.hpp"
@ -343,5 +342,3 @@ private:
}; };
} // Namespace:: SqMod } // Namespace:: SqMod
#endif // _LIBRARY_CHRONO_TIMESTAMP_HPP_

View File

@ -1,5 +1,4 @@
#ifndef _LIBRARY_CRYPT_HPP_ #pragma once
#define _LIBRARY_CRYPT_HPP_
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------
#include "SqBase.hpp" #include "SqBase.hpp"
@ -10,5 +9,3 @@ namespace SqMod {
} // Namespace:: SqMod } // Namespace:: SqMod
#endif // _LIBRARY_CRYPT_HPP_

View File

@ -1,5 +1,4 @@
#ifndef _LIBRARY_CRYPT_AES_HPP_ #pragma once
#define _LIBRARY_CRYPT_AES_HPP_
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------
#include "SqBase.hpp" #include "SqBase.hpp"
@ -101,5 +100,3 @@ private:
}; };
} // Namespace:: SqMod } // Namespace:: SqMod
#endif // _LIBRARY_CRYPT_AES_HPP_

View File

@ -1,5 +1,4 @@
#ifndef _LIBRARY_CRYPT_HASH_HPP_ #pragma once
#define _LIBRARY_CRYPT_HASH_HPP_
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------
#include "SqBase.hpp" #include "SqBase.hpp"
@ -98,5 +97,3 @@ private:
}; };
} // Namespace:: SqMod } // Namespace:: SqMod
#endif // _LIBRARY_CRYPT_HASH_HPP_

View File

@ -1,5 +1,4 @@
#ifndef _LIBRARY_IO_HPP_ #pragma once
#define _LIBRARY_IO_HPP_
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------
#include "Base/Shared.hpp" #include "Base/Shared.hpp"
@ -10,5 +9,3 @@ namespace SqMod {
} // Namespace:: SqMod } // Namespace:: SqMod
#endif // _LIBRARY_IO_HPP_

View File

@ -1,5 +1,4 @@
#ifndef _LIBRARY_IO_INI_HPP_ #pragma once
#define _LIBRARY_IO_INI_HPP_
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------
#include "Base/Shared.hpp" #include "Base/Shared.hpp"
@ -977,5 +976,3 @@ public:
}; };
} // Namespace:: SqMod } // Namespace:: SqMod
#endif // _LIBRARY_IO_INI_HPP_

View File

@ -1,5 +1,4 @@
#ifndef _LIBRARY_NUMERIC_HPP_ #pragma once
#define _LIBRARY_NUMERIC_HPP_
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------
#include "SqBase.hpp" #include "SqBase.hpp"
@ -10,5 +9,3 @@ namespace SqMod {
} // Namespace:: SqMod } // Namespace:: SqMod
#endif // _LIBRARY_NUMERIC_HPP_

View File

@ -1,5 +1,4 @@
#ifndef _LIBRARY_NUMERIC_LONGINT_HPP_ #pragma once
#define _LIBRARY_NUMERIC_LONGINT_HPP_
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------
#include "Base/Shared.hpp" #include "Base/Shared.hpp"
@ -1286,5 +1285,3 @@ Int64 PopStackSLong(HSQUIRRELVM vm, SQInteger idx);
Uint64 PopStackULong(HSQUIRRELVM vm, SQInteger idx); Uint64 PopStackULong(HSQUIRRELVM vm, SQInteger idx);
} // Namespace:: SqMod } // Namespace:: SqMod
#endif // _LIBRARY_NUMERIC_LONGINT_HPP_

View File

@ -1,5 +1,4 @@
#ifndef _LIBRARY_NUMERIC_MATH_HPP_ #pragma once
#define _LIBRARY_NUMERIC_MATH_HPP_
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------
#include "SqBase.hpp" #include "SqBase.hpp"
@ -10,5 +9,3 @@ namespace SqMod {
} // Namespace:: SqMod } // Namespace:: SqMod
#endif // _LIBRARY_NUMERIC_MATH_HPP_

View File

@ -1,5 +1,4 @@
#ifndef _LIBRARY_NUMERIC_RANDOM_HPP_ #pragma once
#define _LIBRARY_NUMERIC_RANDOM_HPP_
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------
#include "SqBase.hpp" #include "SqBase.hpp"
@ -160,5 +159,3 @@ template <> struct RandomVal< bool >
}; };
} // Namespace:: SqMod } // Namespace:: SqMod
#endif // _LIBRARY_NUMERIC_RANDOM_HPP_

View File

@ -1,5 +1,4 @@
#ifndef _LIBRARY_SQLITE_HPP_ #pragma once
#define _LIBRARY_SQLITE_HPP_
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------
#include "Base/Shared.hpp" #include "Base/Shared.hpp"
@ -10,5 +9,3 @@ namespace SqMod {
} // Namespace:: SqMod } // Namespace:: SqMod
#endif // _LIBRARY_SQLITE_HPP_

View File

@ -1,5 +1,4 @@
#ifndef _LIBRARY_STRING_HPP_ #pragma once
#define _LIBRARY_STRING_HPP_
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------
#include "SqBase.hpp" #include "SqBase.hpp"
@ -26,5 +25,3 @@ CSStr StrToUppercase(CSStr str);
Buffer StrToUppercaseB(CSStr str); Buffer StrToUppercaseB(CSStr str);
} // Namespace:: SqMod } // Namespace:: SqMod
#endif // _LIBRARY_STRING_HPP_

View File

@ -1,5 +1,4 @@
#ifndef _LIBRARY_SYSTEM_HPP_ #pragma once
#define _LIBRARY_SYSTEM_HPP_
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------
#include "Base/Shared.hpp" #include "Base/Shared.hpp"
@ -10,5 +9,3 @@ namespace SqMod {
} // Namespace:: SqMod } // Namespace:: SqMod
#endif // _LIBRARY_SYSTEM_HPP_

View File

@ -1,5 +1,4 @@
#ifndef _LIBRARY_SYSDIR_HPP_ #pragma once
#define _LIBRARY_SYSDIR_HPP_
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------
#include "Base/Shared.hpp" #include "Base/Shared.hpp"
@ -580,8 +579,4 @@ public:
} }
}; };
} // Namespace:: SqMod } // Namespace:: SqMod
#endif // _LIBRARY_SYSDIR_HPP_

View File

@ -1,5 +1,4 @@
#ifndef _LIBRARY_SYSENV_HPP_ #pragma once
#define _LIBRARY_SYSENV_HPP_
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------
#include "Base/Shared.hpp" #include "Base/Shared.hpp"
@ -312,5 +311,3 @@ public:
}; };
} // Namespace:: SqMod } // Namespace:: SqMod
#endif // _LIBRARY_SYSENV_HPP_

View File

@ -1,5 +1,4 @@
#ifndef _LIBRARY_SYSPATH_HPP_ #pragma once
#define _LIBRARY_SYSPATH_HPP_
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------
#include "Base/Shared.hpp" #include "Base/Shared.hpp"
@ -759,5 +758,3 @@ public:
}; };
} // Namespace:: SqMod } // Namespace:: SqMod
#endif // _LIBRARY_SYSPATH_HPP_

View File

@ -1,5 +1,4 @@
#ifndef _LIBRARY_UTILS_HPP_ #pragma once
#define _LIBRARY_UTILS_HPP_
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------
#include "Base/Shared.hpp" #include "Base/Shared.hpp"
@ -10,5 +9,3 @@ namespace SqMod {
} // Namespace:: SqMod } // Namespace:: SqMod
#endif // _LIBRARY_UTILS_HPP_

View File

@ -1,5 +1,4 @@
#ifndef _LIBRARY_UTILS_BUFFER_HPP_ #pragma once
#define _LIBRARY_UTILS_BUFFER_HPP_
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------
#include "Base/Shared.hpp" #include "Base/Shared.hpp"
@ -833,5 +832,3 @@ public:
}; };
} // Namespace:: SqMod } // Namespace:: SqMod
#endif // _LIBRARY_UTILS_BUFFER_HPP_

View File

@ -1,5 +1,4 @@
#ifndef _LOGGER_HPP_ #pragma once
#define _LOGGER_HPP_
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------
#include "SqBase.hpp" #include "SqBase.hpp"
@ -340,5 +339,3 @@ void OutputMessage(CCStr msg, ...);
void OutputError(CCStr msg, ...); void OutputError(CCStr msg, ...);
} // Namespace:: SqMod } // Namespace:: SqMod
#endif // _LOGGER_HPP_

View File

@ -1,5 +1,4 @@
#ifndef _BASE_ALGO_HPP_ #pragma once
#define _BASE_ALGO_HPP_
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------
#include "Core.hpp" #include "Core.hpp"
@ -1645,5 +1644,3 @@ public:
} // Namespace:: Algo } // Namespace:: Algo
} // Namespace:: SqMod } // Namespace:: SqMod
#endif // _BASE_ALGO_HPP_

View File

@ -1,5 +1,4 @@
#ifndef _AREAS_HPP_ #pragma once
#define _AREAS_HPP_
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------
#include "Base/Shared.hpp" #include "Base/Shared.hpp"
@ -712,5 +711,3 @@ public:
}; };
} // Namespace:: SqMod } // Namespace:: SqMod
#endif // _AREAS_HPP_

View File

@ -1,5 +1,4 @@
#ifndef _COMMAND_HPP_ #pragma once
#define _COMMAND_HPP_
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------
#include "Base/Shared.hpp" #include "Base/Shared.hpp"
@ -2039,5 +2038,3 @@ private:
} // Namespace:: Cmd } // Namespace:: Cmd
} // Namespace:: SqMod } // Namespace:: SqMod
#endif // _COMMAND_HPP_

View File

@ -1,5 +1,4 @@
#ifndef _MISC_FUNCTIONS_HPP_ #pragma once
#define _MISC_FUNCTIONS_HPP_
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------
#include "SqBase.hpp" #include "SqBase.hpp"
@ -490,7 +489,4 @@ SQFloat GetNetworkStatisticsF(Int32 option_id);
SQInteger GetNetworkStatisticsI(Int32 option_id); SQInteger GetNetworkStatisticsI(Int32 option_id);
#endif #endif
} // Namespace:: SqMod } // Namespace:: SqMod
#endif // _MISC_FUNCTIONS_HPP_

View File

@ -1,5 +1,4 @@
#ifndef _MISC_MODEL_HPP_ #pragma once
#define _MISC_MODEL_HPP_
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------
#include "SqBase.hpp" #include "SqBase.hpp"
@ -28,5 +27,3 @@ bool IsModelWeapon(Int32 id);
bool IsModelActuallyWeapon(Int32 id); bool IsModelActuallyWeapon(Int32 id);
} // Namespace:: SqMod } // Namespace:: SqMod
#endif // _MISC_MODEL_HPP_

View File

@ -1,5 +1,4 @@
#ifndef _MISC_PLAYER_HPP_ #pragma once
#define _MISC_PLAYER_HPP_
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------
#include "SqBase.hpp" #include "SqBase.hpp"
@ -28,5 +27,3 @@ Int32 GetSkinID(StackStrF & name);
bool IsSkinValid(Int32 id); bool IsSkinValid(Int32 id);
} // Namespace:: SqMod } // Namespace:: SqMod
#endif // _MISC_PLAYER_HPP_

View File

@ -1,5 +1,4 @@
#ifndef _ROUTINE_HPP_ #pragma once
#define _ROUTINE_HPP_
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------
#include "Base/Shared.hpp" #include "Base/Shared.hpp"
@ -640,5 +639,3 @@ public:
}; };
} // Namespace:: SqMod } // Namespace:: SqMod
#endif // _ROUTINE_HPP_

View File

@ -1,5 +1,4 @@
#ifndef _SIGNAL_HPP_ #pragma once
#define _SIGNAL_HPP_
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------
#include "Base/Shared.hpp" #include "Base/Shared.hpp"
@ -763,5 +762,3 @@ public:
}; };
} // Namespace:: SqMod } // Namespace:: SqMod
#endif // _SIGNAL_HPP_

View File

@ -1,5 +1,4 @@
#ifndef _TASKS_HPP_ #pragma once
#define _TASKS_HPP_
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------
#include "Base/Shared.hpp" #include "Base/Shared.hpp"
@ -523,5 +522,3 @@ public:
}; };
} // Namespace:: SqMod } // Namespace:: SqMod
#endif // _TASKS_HPP_

View File

@ -1,5 +1,4 @@
#ifndef _MISC_VEHICLE_HPP_ #pragma once
#define _MISC_VEHICLE_HPP_
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------
#include "SqBase.hpp" #include "SqBase.hpp"
@ -28,5 +27,3 @@ Int32 GetAutomobileID(StackStrF & name);
bool IsAutomobileValid(Int32 id); bool IsAutomobileValid(Int32 id);
} // Namespace:: SqMod } // Namespace:: SqMod
#endif // _MISC_VEHICLE_HPP_

View File

@ -1,5 +1,4 @@
#ifndef _MISC_WEAPON_HPP_ #pragma once
#define _MISC_WEAPON_HPP_
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------
#include "SqBase.hpp" #include "SqBase.hpp"
@ -58,5 +57,3 @@ Int32 WeaponToModel(Int32 id);
bool IsWeaponNatural(Int32 id); bool IsWeaponNatural(Int32 id);
} // Namespace:: SqMod } // Namespace:: SqMod
#endif // _MISC_WEAPON_HPP_

View File

@ -1,5 +1,4 @@
#ifndef _SQBASE_HPP_ #pragma once
#define _SQBASE_HPP_
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------
#include <sqconfig.h> #include <sqconfig.h>
@ -1432,5 +1431,3 @@ enum EntityType
#define SQMOD_ASCII_TILDE 126 #define SQMOD_ASCII_TILDE 126
#define SQMOD_ASCII_UNDEFINED 127 #define SQMOD_ASCII_UNDEFINED 127
#define SQMOD_ASCII_MAX 127 #define SQMOD_ASCII_MAX 127
#endif // _SQBASE_HPP_