diff --git a/.github/workflows/Validate_File_Contents.yaml b/.github/workflows/Validate_File_Contents.yaml new file mode 100644 index 000000000..7700eca44 --- /dev/null +++ b/.github/workflows/Validate_File_Contents.yaml @@ -0,0 +1,29 @@ +name: Validate file contents + +on: + workflow_dispatch: # manual trigger + + push: + paths: + - "plugin_*/**.h" + - "plugin_*/**.cpp" + - "shared/**.h" + - "shared/**.cpp" + + pull_request: + paths: + - "plugin_*/**.h" + - "plugin_*/**.cpp" + - "shared/**.h" + - "shared/**.cpp" + +jobs: + Validate_file_contents: + runs-on: ubuntu-latest + + steps: + - name: Checkout repository + uses: actions/checkout@v6 + + - name: Check files + run: node .github/workflows/scripts/Validate_File_Contents.js diff --git a/.github/workflows/scripts/Validate_File_Contents.js b/.github/workflows/scripts/Validate_File_Contents.js new file mode 100644 index 000000000..bc88723f4 --- /dev/null +++ b/.github/workflows/scripts/Validate_File_Contents.js @@ -0,0 +1,106 @@ +const fs = require("fs"); +const path = require("path"); + +let result = true; +//result &= walkRecursive("./examples/"); +result &= walkRecursive("./plugin_sa/"); + +console.log(result); +if (!result) + process.exit(1); // problem found + + +function walkRecursive(dir) +{ + let result = true; + + const files = fs.readdirSync(dir, { withFileTypes: true }); + for (const file of files) + { + let filename = path.join(dir, file.name); + filename = filename.split(path.sep).join('/'); + + if (file.isDirectory()) + result &= walkRecursive(filename); + else + result &= processFile(filename); + } + + return result; +} + +function processFile(filename) +{ + let result = true; + + result &= processCodeFile(filename); + + return result; +} + +function processCodeFile(filename) +{ + if (filename.includes("/rw/")) // skip Renderware files + return true; + + const headerExtensions = [".h", ".hpp"]; + const sourceExtensions = [".c", ".cpp"]; + const filetype = path.extname(filename).toLowerCase(); + + if (!headerExtensions.includes(filetype) && !sourceExtensions.includes(filetype)) + return true; // not code file + + let result = true; + + result &= verifyPluginSdkComment(filename, headerExtensions.includes(filetype)); + + return result; +} + +function verifyPluginSdkComment(filename, isHeader) +{ + let expected = "/*\n"; + + expected += " Plugin-SDK (Grand Theft Auto "; + if (filename.toLowerCase().startsWith("plugin_II")) expected += "2"; + if (filename.toLowerCase().startsWith("plugin_III")) expected += "3"; + if (filename.toLowerCase().startsWith("plugin_vc")) expected += "Vice City"; + if (filename.toLowerCase().startsWith("plugin_sa")) expected += "San Andreas"; + if (filename.toLowerCase().startsWith("plugin_IV")) expected += "IV"; + if (filename.toLowerCase().startsWith("plugin_vc_unreal")) expected += "Vice City Unreal"; + if (filename.toLowerCase().startsWith("plugin_sa_unreal")) expected += "San Andreas Unreal"; + if (filename.toLowerCase().startsWith("shared")) expected += "shared"; + expected += ") " + + if (isHeader) + expected += "header"; + else + expected += "source"; + expected += " file\n"; + + expected += " Authors: GTA Community. See more here\n"; + expected += " https://github.com/DK22Pac/plugin-sdk\n"; + expected += " Do not delete this comment block. Respect others' work!\n"; + expected += "*/"; + + const buffer = Buffer.alloc(expected.length + 100); + const fd = fs.openSync(filename, 'r'); + fs.readSync(fd, buffer, 0, expected.length + 100, 0); + fs.closeSync(fd); + let actual = buffer.toString('utf8'); + actual = actual.replace(/\r\n/g, "\n"); + + // compare lines + const actualLines = actual.split('\n'); + const expectedLines = expected.split('\n'); + for (let i = 0; i < expectedLines.length; i++) + { + if (actualLines[i] !== expectedLines[i]) + { + console.log(`::error file=${filename},line=${i+1},title=Invalid PSDK comment header::Found "${actualLines[i]}", expected "${expectedLines[i]}"`); + return false; + } + } + + return true; +} diff --git a/.github/workflows/scripts/run.cmd b/.github/workflows/scripts/run.cmd new file mode 100644 index 000000000..0103dc7d7 --- /dev/null +++ b/.github/workflows/scripts/run.cmd @@ -0,0 +1,3 @@ +cd ..\..\.. +"D:\Program Files\Node\node.exe" ".github\workflows\scripts\Validate_File_Contents.js" +pause \ No newline at end of file diff --git a/examples/Neon/KeyCheck.cpp b/examples/Neon/KeyCheck.cpp index 1f0adb859..f02f2dc2f 100644 --- a/examples/Neon/KeyCheck.cpp +++ b/examples/Neon/KeyCheck.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "KeyCheck.h" #include "plugin.h" diff --git a/examples/Neon/KeyCheck.h b/examples/Neon/KeyCheck.h index f83207c0e..4ab376668 100644 --- a/examples/Neon/KeyCheck.h +++ b/examples/Neon/KeyCheck.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/hooking/Hooking.Patterns.h b/hooking/Hooking.Patterns.h index e72f55786..097dafb1e 100644 --- a/hooking/Hooking.Patterns.h +++ b/hooking/Hooking.Patterns.h @@ -6,7 +6,6 @@ */ #pragma once - #include #include #include diff --git a/injector/gvm/translator.hpp b/injector/gvm/translator.hpp index c6ac4303b..8b14bb663 100644 --- a/injector/gvm/translator.hpp +++ b/injector/gvm/translator.hpp @@ -24,7 +24,6 @@ * */ #pragma once - #if !defined(INJECTOR_GVM_HAS_TRANSLATOR) #error Missing INJECTOR_GVM_HAS_TRANSLATOR on compiler definitions #endif diff --git a/plugin_II/game_II/CAudioManager.cpp b/plugin_II/game_II/CAudioManager.cpp index b0ab5d746..a4b7c901a 100644 --- a/plugin_II/game_II/CAudioManager.cpp +++ b/plugin_II/game_II/CAudioManager.cpp @@ -4,7 +4,6 @@ https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! */ - #include "CAudioManager.h" CAudioManager& AudioManager = *(CAudioManager*)0x5DCBC8; diff --git a/plugin_II/game_II/CAudioManager.h b/plugin_II/game_II/CAudioManager.h index ef473ad11..7595472ad 100644 --- a/plugin_II/game_II/CAudioManager.h +++ b/plugin_II/game_II/CAudioManager.h @@ -4,7 +4,6 @@ https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! */ - #pragma once #include "PluginBase.h" diff --git a/plugin_II/game_II/CCar.cpp b/plugin_II/game_II/CCar.cpp index 92ab757ce..98b6e85f5 100644 --- a/plugin_II/game_II/CCar.cpp +++ b/plugin_II/game_II/CCar.cpp @@ -4,7 +4,6 @@ https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! */ - #include "CCar.h" void CCar::SetPosition(CEncodedVector pos) { diff --git a/plugin_II/game_II/CCar.h b/plugin_II/game_II/CCar.h index ee015b3d4..d6a60a6d2 100644 --- a/plugin_II/game_II/CCar.h +++ b/plugin_II/game_II/CCar.h @@ -4,7 +4,6 @@ https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! */ - #pragma once #include "PluginBase.h" #include "CSprite.h" diff --git a/plugin_II/game_II/CCarManager.cpp b/plugin_II/game_II/CCarManager.cpp index 21712f5f9..fa9497c8c 100644 --- a/plugin_II/game_II/CCarManager.cpp +++ b/plugin_II/game_II/CCarManager.cpp @@ -4,7 +4,6 @@ https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! */ - #include "CCarManager.h" CCarManager** gCarManager = (CCarManager**)0x5E4CA0; diff --git a/plugin_II/game_II/CCarManager.h b/plugin_II/game_II/CCarManager.h index 8282a978a..2e4b755b3 100644 --- a/plugin_II/game_II/CCarManager.h +++ b/plugin_II/game_II/CCarManager.h @@ -4,7 +4,6 @@ https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! */ - #pragma once #include "PluginBase.h" #include "CCar.h" diff --git a/plugin_II/game_II/CFileMgr.cpp b/plugin_II/game_II/CFileMgr.cpp index bf79ccb11..285762315 100644 --- a/plugin_II/game_II/CFileMgr.cpp +++ b/plugin_II/game_II/CFileMgr.cpp @@ -4,7 +4,6 @@ https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! */ - #include "CFileMgr.h" int CFileMgr::OpenFile(const char* name) { diff --git a/plugin_II/game_II/CFileMgr.h b/plugin_II/game_II/CFileMgr.h index 1f36bb46b..6ee89857f 100644 --- a/plugin_II/game_II/CFileMgr.h +++ b/plugin_II/game_II/CFileMgr.h @@ -4,7 +4,6 @@ https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! */ - #pragma once #include "PluginBase.h" diff --git a/plugin_II/game_II/CFont.h b/plugin_II/game_II/CFont.h index a3f3b4fce..119521d7d 100644 --- a/plugin_II/game_II/CFont.h +++ b/plugin_II/game_II/CFont.h @@ -4,7 +4,6 @@ https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! */ - #pragma once #include "PluginBase.h" diff --git a/plugin_II/game_II/CGame.cpp b/plugin_II/game_II/CGame.cpp index a79655348..e17103a96 100644 --- a/plugin_II/game_II/CGame.cpp +++ b/plugin_II/game_II/CGame.cpp @@ -4,7 +4,6 @@ https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! */ - #include "CGame.h" CGame** gGame = (CGame**)0x5EB4FC; diff --git a/plugin_II/game_II/CGame.h b/plugin_II/game_II/CGame.h index 5860234b1..4fec75589 100644 --- a/plugin_II/game_II/CGame.h +++ b/plugin_II/game_II/CGame.h @@ -4,7 +4,6 @@ https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! */ - #pragma once #include "PluginBase.h" diff --git a/plugin_II/game_II/CKeybrd.cpp b/plugin_II/game_II/CKeybrd.cpp index 8659b7bf2..82b4ce162 100644 --- a/plugin_II/game_II/CKeybrd.cpp +++ b/plugin_II/game_II/CKeybrd.cpp @@ -4,7 +4,6 @@ https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! */ - #include "CKeybrd.h" CKeybrd** gKeybrd = (CKeybrd**)0x662128; diff --git a/plugin_II/game_II/CKeybrd.h b/plugin_II/game_II/CKeybrd.h index 25d1a916c..ec75d1f4a 100644 --- a/plugin_II/game_II/CKeybrd.h +++ b/plugin_II/game_II/CKeybrd.h @@ -4,7 +4,6 @@ https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! */ - #pragma once #include "PluginBase.h" diff --git a/plugin_II/game_II/CMenuManager.cpp b/plugin_II/game_II/CMenuManager.cpp index f685313b5..23b4ded87 100644 --- a/plugin_II/game_II/CMenuManager.cpp +++ b/plugin_II/game_II/CMenuManager.cpp @@ -4,7 +4,6 @@ https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! */ - #include "CMenuManager.h" CMenuManager** FrontendMenuManager = (CMenuManager**)0x5EB160; diff --git a/plugin_II/game_II/CMenuManager.h b/plugin_II/game_II/CMenuManager.h index 0a149a67e..343c61996 100644 --- a/plugin_II/game_II/CMenuManager.h +++ b/plugin_II/game_II/CMenuManager.h @@ -4,7 +4,6 @@ https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! */ - #pragma once #include "PluginBase.h" #include "GBH.h" diff --git a/plugin_II/game_II/CObject.cpp b/plugin_II/game_II/CObject.cpp index f938ebe9b..b69c55a11 100644 --- a/plugin_II/game_II/CObject.cpp +++ b/plugin_II/game_II/CObject.cpp @@ -4,7 +4,6 @@ https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! */ - #include "CObject.h" int const& CObject::GetPositionX(int* x) { diff --git a/plugin_II/game_II/CPed.cpp b/plugin_II/game_II/CPed.cpp index 692b56cf5..780e2cd36 100644 --- a/plugin_II/game_II/CPed.cpp +++ b/plugin_II/game_II/CPed.cpp @@ -4,7 +4,6 @@ https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! */ - #include "CPed.h" void CPed::GiveWeapon(int id, int ammo) { diff --git a/plugin_II/game_II/CPed.h b/plugin_II/game_II/CPed.h index 1e01ab378..a568818af 100644 --- a/plugin_II/game_II/CPed.h +++ b/plugin_II/game_II/CPed.h @@ -4,7 +4,6 @@ https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! */ - #pragma once #include "PluginBase.h" #include "CCar.h" diff --git a/plugin_II/game_II/CPedManager.cpp b/plugin_II/game_II/CPedManager.cpp index 6f455db9a..6b0158cda 100644 --- a/plugin_II/game_II/CPedManager.cpp +++ b/plugin_II/game_II/CPedManager.cpp @@ -4,7 +4,6 @@ https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! */ - #include "CPedManager.h" CPedManager** gPedManager = (CPedManager**)0x5E5BBC; diff --git a/plugin_II/game_II/CPedManager.h b/plugin_II/game_II/CPedManager.h index de86fabe5..a53a47e6a 100644 --- a/plugin_II/game_II/CPedManager.h +++ b/plugin_II/game_II/CPedManager.h @@ -4,7 +4,6 @@ https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! */ - #pragma once #include "PluginBase.h" diff --git a/plugin_II/game_II/CPhysics.cpp b/plugin_II/game_II/CPhysics.cpp index 63eec4d20..6202d7cee 100644 --- a/plugin_II/game_II/CPhysics.cpp +++ b/plugin_II/game_II/CPhysics.cpp @@ -4,5 +4,4 @@ https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! */ - #include "CPhysics.h" diff --git a/plugin_II/game_II/CPlayerPed.cpp b/plugin_II/game_II/CPlayerPed.cpp index f7e2ba036..62607e660 100644 --- a/plugin_II/game_II/CPlayerPed.cpp +++ b/plugin_II/game_II/CPlayerPed.cpp @@ -4,7 +4,6 @@ https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! */ - #include "CPlayerPed.h" #include "CPed.h" diff --git a/plugin_II/game_II/CPlayerPed.h b/plugin_II/game_II/CPlayerPed.h index 3ddff5fdc..0f9494f5e 100644 --- a/plugin_II/game_II/CPlayerPed.h +++ b/plugin_II/game_II/CPlayerPed.h @@ -4,7 +4,6 @@ https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! */ - #pragma once #include "PluginBase.h" #include "CPhysics.h" diff --git a/plugin_II/game_II/CPopulation.h b/plugin_II/game_II/CPopulation.h index 5159b6910..af3a662f7 100644 --- a/plugin_II/game_II/CPopulation.h +++ b/plugin_II/game_II/CPopulation.h @@ -4,7 +4,6 @@ https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! */ - #pragma once #include "PluginBase.h" #include "CCar.h" diff --git a/plugin_II/game_II/CRect.h b/plugin_II/game_II/CRect.h index 0e4d8d45c..9afd17bff 100644 --- a/plugin_II/game_II/CRect.h +++ b/plugin_II/game_II/CRect.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" class CRect { diff --git a/plugin_II/game_II/CReplay.cpp b/plugin_II/game_II/CReplay.cpp index b45435f72..fb35f9077 100644 --- a/plugin_II/game_II/CReplay.cpp +++ b/plugin_II/game_II/CReplay.cpp @@ -4,7 +4,6 @@ https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! */ - #include "CReplay.h" CReplay* gReplay = (CReplay*)0x5ECAC8; diff --git a/plugin_II/game_II/CReplay.h b/plugin_II/game_II/CReplay.h index 64adf50aa..801f6c219 100644 --- a/plugin_II/game_II/CReplay.h +++ b/plugin_II/game_II/CReplay.h @@ -4,7 +4,6 @@ https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! */ - #pragma once #include "PluginBase.h" diff --git a/plugin_II/game_II/CSprite.cpp b/plugin_II/game_II/CSprite.cpp index b5685ee01..35a5d99ed 100644 --- a/plugin_II/game_II/CSprite.cpp +++ b/plugin_II/game_II/CSprite.cpp @@ -4,7 +4,6 @@ https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! */ - #include "CSprite.h" #include "CGame.h" #include "CPlayerPed.h" diff --git a/plugin_II/game_II/CSprite2d.cpp b/plugin_II/game_II/CSprite2d.cpp index 2091d9373..32bb9c30c 100644 --- a/plugin_II/game_II/CSprite2d.cpp +++ b/plugin_II/game_II/CSprite2d.cpp @@ -4,7 +4,6 @@ https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! */ - #include "CSprite2d.h" #include "Other.h" #include "d3d/compress.h" diff --git a/plugin_II/game_II/CSprite2d.h b/plugin_II/game_II/CSprite2d.h index 3f67b50e0..11d10ba3c 100644 --- a/plugin_II/game_II/CSprite2d.h +++ b/plugin_II/game_II/CSprite2d.h @@ -4,7 +4,6 @@ https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! */ - #pragma once #include "PluginBase.h" #include "CRGBA.h" diff --git a/plugin_II/game_II/CStyle.cpp b/plugin_II/game_II/CStyle.cpp index fbd36d87e..2c4dcfc04 100644 --- a/plugin_II/game_II/CStyle.cpp +++ b/plugin_II/game_II/CStyle.cpp @@ -4,7 +4,6 @@ https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! */ - #include "CStyle.h" CStyle** gCurrentStyle = (CStyle**)0x670684; diff --git a/plugin_II/game_II/CStyle.h b/plugin_II/game_II/CStyle.h index 68c49a0c1..57fc137e4 100644 --- a/plugin_II/game_II/CStyle.h +++ b/plugin_II/game_II/CStyle.h @@ -4,7 +4,6 @@ https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! */ - #pragma once #include "PluginBase.h" diff --git a/plugin_II/game_II/CTheScripts.cpp b/plugin_II/game_II/CTheScripts.cpp index 1f2da947e..8917593a8 100644 --- a/plugin_II/game_II/CTheScripts.cpp +++ b/plugin_II/game_II/CTheScripts.cpp @@ -4,7 +4,6 @@ https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! */ - #include "CTheScripts.h" CTheScripts** TheScripts = (CTheScripts**)0x6644BC; diff --git a/plugin_II/game_II/CWeapon.cpp b/plugin_II/game_II/CWeapon.cpp index 3e3d10dcc..798e6341a 100644 --- a/plugin_II/game_II/CWeapon.cpp +++ b/plugin_II/game_II/CWeapon.cpp @@ -4,5 +4,4 @@ https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! */ - #include "CWeapon.h" diff --git a/plugin_II/game_II/CWeapon.h b/plugin_II/game_II/CWeapon.h index b00b09de1..f01ca1c2b 100644 --- a/plugin_II/game_II/CWeapon.h +++ b/plugin_II/game_II/CWeapon.h @@ -4,7 +4,6 @@ https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! */ - #pragma once #include "PluginBase.h" diff --git a/plugin_II/game_II/CWorld.h b/plugin_II/game_II/CWorld.h index d1a5ae288..2b69d86ed 100644 --- a/plugin_II/game_II/CWorld.h +++ b/plugin_II/game_II/CWorld.h @@ -4,7 +4,6 @@ https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! */ - #pragma once #include "PluginBase.h" diff --git a/plugin_II/game_II/GBH.h b/plugin_II/game_II/GBH.h index f578fe78d..5318ae758 100644 --- a/plugin_II/game_II/GBH.h +++ b/plugin_II/game_II/GBH.h @@ -4,7 +4,6 @@ https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! */ - #pragma once #include "PluginBase.h" #include "tVideo.h" diff --git a/plugin_II/game_II/cDMAudio.cpp b/plugin_II/game_II/cDMAudio.cpp index f0d46beee..cc9d77a44 100644 --- a/plugin_II/game_II/cDMAudio.cpp +++ b/plugin_II/game_II/cDMAudio.cpp @@ -4,7 +4,6 @@ https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! */ - #include "cDMAudio.h" cDMAudio& DMAudio = *(cDMAudio*)0x5D85A0; diff --git a/plugin_II/game_II/cDMAudio.h b/plugin_II/game_II/cDMAudio.h index bc216f849..44f4b91d0 100644 --- a/plugin_II/game_II/cDMAudio.h +++ b/plugin_II/game_II/cDMAudio.h @@ -4,7 +4,6 @@ https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! */ - #pragma once #include "PluginBase.h" #include "CAudioManager.h" diff --git a/plugin_II/game_II/cSampleManager.cpp b/plugin_II/game_II/cSampleManager.cpp index 98e44c0d5..851132c72 100644 --- a/plugin_II/game_II/cSampleManager.cpp +++ b/plugin_II/game_II/cSampleManager.cpp @@ -4,7 +4,6 @@ https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! */ - #include "cSampleManager.h" cSampleManager& SampleManager = *(cSampleManager*)0x66C950; diff --git a/plugin_II/game_II/cSampleManager.h b/plugin_II/game_II/cSampleManager.h index db07e9be6..27532cb49 100644 --- a/plugin_II/game_II/cSampleManager.h +++ b/plugin_II/game_II/cSampleManager.h @@ -4,7 +4,6 @@ https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! */ - #pragma once #include "PluginBase.h" diff --git a/plugin_II/game_II/common.cpp b/plugin_II/game_II/common.cpp index 4512bc6bb..8c84a2897 100644 --- a/plugin_II/game_II/common.cpp +++ b/plugin_II/game_II/common.cpp @@ -4,7 +4,6 @@ https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! */ - #include "common.h" wchar_t* gUString = (wchar_t*)0x5E9F08; //[640] diff --git a/plugin_II/game_II/common.h b/plugin_II/game_II/common.h index 065c17140..3d57629f2 100644 --- a/plugin_II/game_II/common.h +++ b/plugin_II/game_II/common.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" extern wchar_t* gUString; diff --git a/plugin_II/game_II/tTexture.h b/plugin_II/game_II/tTexture.h index 263cfaaf5..4f13fe7dd 100644 --- a/plugin_II/game_II/tTexture.h +++ b/plugin_II/game_II/tTexture.h @@ -4,7 +4,6 @@ https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! */ - #pragma once #include "PluginBase.h" diff --git a/plugin_II/game_II/tVideo.cpp b/plugin_II/game_II/tVideo.cpp index f1fb44c37..f49eed8fb 100644 --- a/plugin_II/game_II/tVideo.cpp +++ b/plugin_II/game_II/tVideo.cpp @@ -4,7 +4,6 @@ https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! */ - #include "tVideo.h" T_Vid_GetVersion& Vid_GetVersion = *(T_Vid_GetVersion*)0x59501C; diff --git a/plugin_II/game_II/tVideo.h b/plugin_II/game_II/tVideo.h index 517318c2e..f648d90a5 100644 --- a/plugin_II/game_II/tVideo.h +++ b/plugin_II/game_II/tVideo.h @@ -4,7 +4,6 @@ https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! */ - #pragma once #include "PluginBase.h" #include diff --git a/plugin_II/plugin_II.h b/plugin_II/plugin_II.h index 09717b7ce..aaa2fc042 100644 --- a/plugin_II/plugin_II.h +++ b/plugin_II/plugin_II.h @@ -5,5 +5,4 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "plugin.h" diff --git a/plugin_III/game_III/AnimBlendFrameData.h b/plugin_III/game_III/AnimBlendFrameData.h index 4f26268d3..b2a5da26f 100644 --- a/plugin_III/game_III/AnimBlendFrameData.h +++ b/plugin_III/game_III/AnimBlendFrameData.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "RenderWare.h" #include "rw/rphanim.h" diff --git a/plugin_III/game_III/C2dEffect.h b/plugin_III/game_III/C2dEffect.h index cbd96650b..8aa5ff746 100644 --- a/plugin_III/game_III/C2dEffect.h +++ b/plugin_III/game_III/C2dEffect.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" #include "CRGBA.h" diff --git a/plugin_III/game_III/C2deffectsModelInfo.h b/plugin_III/game_III/C2deffectsModelInfo.h index 51505a56f..c01cbb310 100644 --- a/plugin_III/game_III/C2deffectsModelInfo.h +++ b/plugin_III/game_III/C2deffectsModelInfo.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CClumpModelInfo.h" diff --git a/plugin_III/game_III/C3dMarker.h b/plugin_III/game_III/C3dMarker.h index 5f75e2a57..eccac65d6 100644 --- a/plugin_III/game_III/C3dMarker.h +++ b/plugin_III/game_III/C3dMarker.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CMatrix.h" #include "RenderWare.h" diff --git a/plugin_III/game_III/C3dMarkers.h b/plugin_III/game_III/C3dMarkers.h index 9195423b4..55b9ff8e3 100644 --- a/plugin_III/game_III/C3dMarkers.h +++ b/plugin_III/game_III/C3dMarkers.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" #include "C3dMarker.h" diff --git a/plugin_III/game_III/CAccident.h b/plugin_III/game_III/CAccident.h index 93013118f..1a836538a 100644 --- a/plugin_III/game_III/CAccident.h +++ b/plugin_III/game_III/CAccident.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" class CPed; diff --git a/plugin_III/game_III/CAccidentManager.h b/plugin_III/game_III/CAccidentManager.h index fd7c38510..7566291af 100644 --- a/plugin_III/game_III/CAccidentManager.h +++ b/plugin_III/game_III/CAccidentManager.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CPed.h" diff --git a/plugin_III/game_III/CAnimBlendAssocGroup.h b/plugin_III/game_III/CAnimBlendAssocGroup.h index 5ba108480..1d5554b40 100644 --- a/plugin_III/game_III/CAnimBlendAssocGroup.h +++ b/plugin_III/game_III/CAnimBlendAssocGroup.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CAnimBlendAssociation.h" #include "RenderWare.h" diff --git a/plugin_III/game_III/CAnimBlendAssociation.h b/plugin_III/game_III/CAnimBlendAssociation.h index b19595190..e20105cd1 100644 --- a/plugin_III/game_III/CAnimBlendAssociation.h +++ b/plugin_III/game_III/CAnimBlendAssociation.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CAnimBlendLink.h" #include "CAnimBlendNode.h" diff --git a/plugin_III/game_III/CAnimBlendClumpData.h b/plugin_III/game_III/CAnimBlendClumpData.h index ff6f9ef2a..51ed086be 100644 --- a/plugin_III/game_III/CAnimBlendClumpData.h +++ b/plugin_III/game_III/CAnimBlendClumpData.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CAnimBlendLink.h" #include "CVector.h" diff --git a/plugin_III/game_III/CAnimBlendHierarchy.h b/plugin_III/game_III/CAnimBlendHierarchy.h index 7e487aa71..9344ae4cb 100644 --- a/plugin_III/game_III/CAnimBlendHierarchy.h +++ b/plugin_III/game_III/CAnimBlendHierarchy.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CAnimBlendSequence.h" #include "CLink.h" diff --git a/plugin_III/game_III/CAnimBlendNode.h b/plugin_III/game_III/CAnimBlendNode.h index aa89caff6..7404f7202 100644 --- a/plugin_III/game_III/CAnimBlendNode.h +++ b/plugin_III/game_III/CAnimBlendNode.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CQuaternion.h" class CAnimBlendSequence; diff --git a/plugin_III/game_III/CAnimBlendSequence.h b/plugin_III/game_III/CAnimBlendSequence.h index 1ee0b8e73..0c915735a 100644 --- a/plugin_III/game_III/CAnimBlendSequence.h +++ b/plugin_III/game_III/CAnimBlendSequence.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CQuaternion.h" diff --git a/plugin_III/game_III/CAnimBlock.h b/plugin_III/game_III/CAnimBlock.h index 84bb1f3da..3f9b45ad2 100644 --- a/plugin_III/game_III/CAnimBlock.h +++ b/plugin_III/game_III/CAnimBlock.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" class PLUGIN_API CAnimBlock { diff --git a/plugin_III/game_III/CAnimManager.h b/plugin_III/game_III/CAnimManager.h index 1bb6d29a1..9d48e619f 100644 --- a/plugin_III/game_III/CAnimManager.h +++ b/plugin_III/game_III/CAnimManager.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CPed.h" #include "CAnimationStyleDescriptor.h" diff --git a/plugin_III/game_III/CAnimationStyleDescriptor.h b/plugin_III/game_III/CAnimationStyleDescriptor.h index 48fd3a90d..e34ec81f8 100644 --- a/plugin_III/game_III/CAnimationStyleDescriptor.h +++ b/plugin_III/game_III/CAnimationStyleDescriptor.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" struct CAnimAssocDesc { diff --git a/plugin_III/game_III/CAntenna.h b/plugin_III/game_III/CAntenna.h index af100b3af..64dc0a4d8 100644 --- a/plugin_III/game_III/CAntenna.h +++ b/plugin_III/game_III/CAntenna.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" diff --git a/plugin_III/game_III/CAntennas.h b/plugin_III/game_III/CAntennas.h index 45b3dc962..7825bec8e 100644 --- a/plugin_III/game_III/CAntennas.h +++ b/plugin_III/game_III/CAntennas.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" #include "CAntenna.h" diff --git a/plugin_III/game_III/CAudioHydrant.h b/plugin_III/game_III/CAudioHydrant.h index 2cc93f189..c1edab728 100644 --- a/plugin_III/game_III/CAudioHydrant.h +++ b/plugin_III/game_III/CAudioHydrant.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" class CParticleObject; diff --git a/plugin_III/game_III/CAutoPilot.cpp b/plugin_III/game_III/CAutoPilot.cpp index e1250e1bf..d8d85a236 100644 --- a/plugin_III/game_III/CAutoPilot.cpp +++ b/plugin_III/game_III/CAutoPilot.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto 3) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto 3) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CAutoPilot.h" diff --git a/plugin_III/game_III/CAutoPilot.h b/plugin_III/game_III/CAutoPilot.h index 5a7644c9f..3b815f091 100644 --- a/plugin_III/game_III/CAutoPilot.h +++ b/plugin_III/game_III/CAutoPilot.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto 3) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto 3) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CPathFind.h" #include "eCarMission.h" diff --git a/plugin_III/game_III/CBox.h b/plugin_III/game_III/CBox.h index a7d97bb08..4c8e82877 100644 --- a/plugin_III/game_III/CBox.h +++ b/plugin_III/game_III/CBox.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" diff --git a/plugin_III/game_III/CBridge.h b/plugin_III/game_III/CBridge.h index 34eab18b3..17a4110e1 100644 --- a/plugin_III/game_III/CBridge.h +++ b/plugin_III/game_III/CBridge.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CBuilding.h" #include "eBridgeState.h" diff --git a/plugin_III/game_III/CBrightLight.h b/plugin_III/game_III/CBrightLight.h index f3c63a93b..666bd874a 100644 --- a/plugin_III/game_III/CBrightLight.h +++ b/plugin_III/game_III/CBrightLight.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" #include "RenderWare.h" diff --git a/plugin_III/game_III/CBrightLights.h b/plugin_III/game_III/CBrightLights.h index 6839c88f5..d0ce70f95 100644 --- a/plugin_III/game_III/CBrightLights.h +++ b/plugin_III/game_III/CBrightLights.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CBrightLight.h" diff --git a/plugin_III/game_III/CBuilding.h b/plugin_III/game_III/CBuilding.h index 5553d828c..6daf4c752 100644 --- a/plugin_III/game_III/CBuilding.h +++ b/plugin_III/game_III/CBuilding.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CEntity.h" diff --git a/plugin_III/game_III/CBulletInfo.h b/plugin_III/game_III/CBulletInfo.h index 94dbda8b7..2ba19f662 100644 --- a/plugin_III/game_III/CBulletInfo.h +++ b/plugin_III/game_III/CBulletInfo.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "eWeaponType.h" #include "CEntity.h" diff --git a/plugin_III/game_III/CBulletTrace.h b/plugin_III/game_III/CBulletTrace.h index a2dbcae0b..ced30421f 100644 --- a/plugin_III/game_III/CBulletTrace.h +++ b/plugin_III/game_III/CBulletTrace.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" #include "RenderWare.h" diff --git a/plugin_III/game_III/CBulletTraces.h b/plugin_III/game_III/CBulletTraces.h index 36ef6da0b..ee1e4b229 100644 --- a/plugin_III/game_III/CBulletTraces.h +++ b/plugin_III/game_III/CBulletTraces.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" #include "CBulletTrace.h" diff --git a/plugin_III/game_III/CCam.h b/plugin_III/game_III/CCam.h index 4e22814cb..d95ef796c 100644 --- a/plugin_III/game_III/CCam.h +++ b/plugin_III/game_III/CCam.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CAutomobile.h" diff --git a/plugin_III/game_III/CCamera.h b/plugin_III/game_III/CCamera.h index 20f78a1a7..7217b9cd3 100644 --- a/plugin_III/game_III/CCamera.h +++ b/plugin_III/game_III/CCamera.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CPlaceable.h" #include "CCam.h" diff --git a/plugin_III/game_III/CCarAI.h b/plugin_III/game_III/CCarAI.h index 8661c0884..6d7bc76ca 100644 --- a/plugin_III/game_III/CCarAI.h +++ b/plugin_III/game_III/CCarAI.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVehicle.h" #include "eCarMission.h" diff --git a/plugin_III/game_III/CCarCtrl.h b/plugin_III/game_III/CCarCtrl.h index 28ce9326b..025e58ffe 100644 --- a/plugin_III/game_III/CCarCtrl.h +++ b/plugin_III/game_III/CCarCtrl.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CZoneInfo.h" #include "CPhysical.h" diff --git a/plugin_III/game_III/CCheat.h b/plugin_III/game_III/CCheat.h index 62d2865ea..917de3254 100644 --- a/plugin_III/game_III/CCheat.h +++ b/plugin_III/game_III/CCheat.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" SUPPORTED_10EN_11EN_STEAM void WeaponCheat(); diff --git a/plugin_III/game_III/CClock.h b/plugin_III/game_III/CClock.h index 6840809ba..fbb2d9632 100644 --- a/plugin_III/game_III/CClock.h +++ b/plugin_III/game_III/CClock.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" class PLUGIN_API CClock { diff --git a/plugin_III/game_III/CClouds.h b/plugin_III/game_III/CClouds.h index cbcaf80b2..35f701091 100644 --- a/plugin_III/game_III/CClouds.h +++ b/plugin_III/game_III/CClouds.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CRGBA.h" #include "RenderWare.h" diff --git a/plugin_III/game_III/CClumpModelInfo.h b/plugin_III/game_III/CClumpModelInfo.h index 5a07223db..67f7534b7 100644 --- a/plugin_III/game_III/CClumpModelInfo.h +++ b/plugin_III/game_III/CClumpModelInfo.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CBaseModelInfo.h" #include "RenderWare.h" diff --git a/plugin_III/game_III/CColBox.h b/plugin_III/game_III/CColBox.h index a7574cc41..12757d1c1 100644 --- a/plugin_III/game_III/CColBox.h +++ b/plugin_III/game_III/CColBox.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CBox.h" #include "tColSurface.h" diff --git a/plugin_III/game_III/CColLine.h b/plugin_III/game_III/CColLine.h index 6428e76ba..b0255838f 100644 --- a/plugin_III/game_III/CColLine.h +++ b/plugin_III/game_III/CColLine.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" diff --git a/plugin_III/game_III/CColModel.h b/plugin_III/game_III/CColModel.h index 2e84b78b9..1eebcac87 100644 --- a/plugin_III/game_III/CColModel.h +++ b/plugin_III/game_III/CColModel.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CColSphere.h" #include "CColBox.h" diff --git a/plugin_III/game_III/CColPoint.h b/plugin_III/game_III/CColPoint.h index d1e92bb69..f0501e1b7 100644 --- a/plugin_III/game_III/CColPoint.h +++ b/plugin_III/game_III/CColPoint.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" diff --git a/plugin_III/game_III/CColSphere.h b/plugin_III/game_III/CColSphere.h index 563a76bc8..04ae61f74 100644 --- a/plugin_III/game_III/CColSphere.h +++ b/plugin_III/game_III/CColSphere.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CSphere.h" #include "tColSurface.h" diff --git a/plugin_III/game_III/CColTriangle.h b/plugin_III/game_III/CColTriangle.h index 143f33c6e..d9f930abd 100644 --- a/plugin_III/game_III/CColTriangle.h +++ b/plugin_III/game_III/CColTriangle.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CompressedVector.h" diff --git a/plugin_III/game_III/CColTrianglePlane.h b/plugin_III/game_III/CColTrianglePlane.h index 8961488d4..cec12ca0e 100644 --- a/plugin_III/game_III/CColTrianglePlane.h +++ b/plugin_III/game_III/CColTrianglePlane.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" #include "CompressedVector.h" diff --git a/plugin_III/game_III/CCollision.h b/plugin_III/game_III/CCollision.h index 8f356b1f1..e4e68c916 100644 --- a/plugin_III/game_III/CCollision.h +++ b/plugin_III/game_III/CCollision.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CColModel.h" #include "CColPoint.h" diff --git a/plugin_III/game_III/CControllerState.cpp b/plugin_III/game_III/CControllerState.cpp index ce60b91ed..1aab983f3 100644 --- a/plugin_III/game_III/CControllerState.cpp +++ b/plugin_III/game_III/CControllerState.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto 3) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto 3) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CControllerState.h" diff --git a/plugin_III/game_III/CControllerState.h b/plugin_III/game_III/CControllerState.h index 48a05b786..b58793c8a 100644 --- a/plugin_III/game_III/CControllerState.h +++ b/plugin_III/game_III/CControllerState.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto 3) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto 3) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" class CControllerState { diff --git a/plugin_III/game_III/CCopPed.h b/plugin_III/game_III/CCopPed.h index 65a5790ef..e56b8786b 100644 --- a/plugin_III/game_III/CCopPed.h +++ b/plugin_III/game_III/CCopPed.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CPed.h" #include "eCopType.h" diff --git a/plugin_III/game_III/CCoronas.h b/plugin_III/game_III/CCoronas.h index b16c897c8..5e9348bdc 100644 --- a/plugin_III/game_III/CCoronas.h +++ b/plugin_III/game_III/CCoronas.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CRegisteredCorona.h" diff --git a/plugin_III/game_III/CCrane.h b/plugin_III/game_III/CCrane.h index 302eda84d..9a9e84d0e 100644 --- a/plugin_III/game_III/CCrane.h +++ b/plugin_III/game_III/CCrane.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CBuilding.h" #include "CObject.h" diff --git a/plugin_III/game_III/CCranes.h b/plugin_III/game_III/CCranes.h index b2beda872..09bd5316c 100644 --- a/plugin_III/game_III/CCranes.h +++ b/plugin_III/game_III/CCranes.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CEntity.h" #include "CVehicle.h" diff --git a/plugin_III/game_III/CCredits.h b/plugin_III/game_III/CCredits.h index 66865ca63..1c112c7e6 100644 --- a/plugin_III/game_III/CCredits.h +++ b/plugin_III/game_III/CCredits.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" class PLUGIN_API CCredits { diff --git a/plugin_III/game_III/CCurrentVehicle.h b/plugin_III/game_III/CCurrentVehicle.h index 7f35bf25a..b6d468696 100644 --- a/plugin_III/game_III/CCurrentVehicle.h +++ b/plugin_III/game_III/CCurrentVehicle.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVehicle.h" diff --git a/plugin_III/game_III/CCurves.h b/plugin_III/game_III/CCurves.h index 973f70c55..ee6d31c84 100644 --- a/plugin_III/game_III/CCurves.h +++ b/plugin_III/game_III/CCurves.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" diff --git a/plugin_III/game_III/CCutsceneHead.h b/plugin_III/game_III/CCutsceneHead.h index 29de014d2..527b43d12 100644 --- a/plugin_III/game_III/CCutsceneHead.h +++ b/plugin_III/game_III/CCutsceneHead.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CCutsceneObject.h" #include "RenderWare.h" diff --git a/plugin_III/game_III/CCutsceneMgr.h b/plugin_III/game_III/CCutsceneMgr.h index 4c8d1055d..092c4a66c 100644 --- a/plugin_III/game_III/CCutsceneMgr.h +++ b/plugin_III/game_III/CCutsceneMgr.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CCutsceneHead.h" #include "CDirectory.h" diff --git a/plugin_III/game_III/CCutsceneObject.h b/plugin_III/game_III/CCutsceneObject.h index 374bda089..e1b31fc90 100644 --- a/plugin_III/game_III/CCutsceneObject.h +++ b/plugin_III/game_III/CCutsceneObject.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CObject.h" diff --git a/plugin_III/game_III/CDarkel.h b/plugin_III/game_III/CDarkel.h index 620c21df2..10ea16f85 100644 --- a/plugin_III/game_III/CDarkel.h +++ b/plugin_III/game_III/CDarkel.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CPed.h" #include "eWeaponType.h" diff --git a/plugin_III/game_III/CDate.h b/plugin_III/game_III/CDate.h index b399f9fe9..08ea884f1 100644 --- a/plugin_III/game_III/CDate.h +++ b/plugin_III/game_III/CDate.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" class PLUGIN_API CDate { diff --git a/plugin_III/game_III/CDigitalClock.h b/plugin_III/game_III/CDigitalClock.h index 88f87e1e0..a5c64c6f2 100644 --- a/plugin_III/game_III/CDigitalClock.h +++ b/plugin_III/game_III/CDigitalClock.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" diff --git a/plugin_III/game_III/CDirectory.h b/plugin_III/game_III/CDirectory.h index 063656a2c..bfb177496 100644 --- a/plugin_III/game_III/CDirectory.h +++ b/plugin_III/game_III/CDirectory.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" //! http://www.gtamodding.com/wiki/IMG_archive#Version_1_-_GTA_III_.26_VC diff --git a/plugin_III/game_III/CDoor.h b/plugin_III/game_III/CDoor.h index c61a3c2cf..5cf74e5fe 100644 --- a/plugin_III/game_III/CDoor.h +++ b/plugin_III/game_III/CDoor.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" diff --git a/plugin_III/game_III/CDraw.h b/plugin_III/game_III/CDraw.h index eb316d63e..a9ffac48c 100644 --- a/plugin_III/game_III/CDraw.h +++ b/plugin_III/game_III/CDraw.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" class PLUGIN_API CDraw { diff --git a/plugin_III/game_III/CDummy.h b/plugin_III/game_III/CDummy.h index ac3ccb160..34a2d4318 100644 --- a/plugin_III/game_III/CDummy.h +++ b/plugin_III/game_III/CDummy.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CEntity.h" #include "CEntryInfoList.h" diff --git a/plugin_III/game_III/CDummyObject.h b/plugin_III/game_III/CDummyObject.h index bab034a6c..be7fec8ca 100644 --- a/plugin_III/game_III/CDummyObject.h +++ b/plugin_III/game_III/CDummyObject.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CDummy.h" class CObject; diff --git a/plugin_III/game_III/CEmergencyPed.h b/plugin_III/game_III/CEmergencyPed.h index 82f82f48c..a010d674c 100644 --- a/plugin_III/game_III/CEmergencyPed.h +++ b/plugin_III/game_III/CEmergencyPed.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CPed.h" diff --git a/plugin_III/game_III/CEntryInfoList.h b/plugin_III/game_III/CEntryInfoList.h index 4084f3f1c..ad05a84cf 100644 --- a/plugin_III/game_III/CEntryInfoList.h +++ b/plugin_III/game_III/CEntryInfoList.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CSector.h" diff --git a/plugin_III/game_III/CEventList.h b/plugin_III/game_III/CEventList.h index 848ca14c4..22fd4429d 100644 --- a/plugin_III/game_III/CEventList.h +++ b/plugin_III/game_III/CEventList.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "eEventType.h" #include "eEventEntity.h" diff --git a/plugin_III/game_III/CExplosion.h b/plugin_III/game_III/CExplosion.h index ce00ef993..6fcd4fb9e 100644 --- a/plugin_III/game_III/CExplosion.h +++ b/plugin_III/game_III/CExplosion.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CEntity.h" #include "eExplosionType.h" diff --git a/plugin_III/game_III/CFallingGlassPane.h b/plugin_III/game_III/CFallingGlassPane.h index 5a643ed80..ab7412568 100644 --- a/plugin_III/game_III/CFallingGlassPane.h +++ b/plugin_III/game_III/CFallingGlassPane.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CMatrix.h" #include "CVector2D.h" diff --git a/plugin_III/game_III/CFileLoader.h b/plugin_III/game_III/CFileLoader.h index 81da9ccd8..70dbfd04e 100644 --- a/plugin_III/game_III/CFileLoader.h +++ b/plugin_III/game_III/CFileLoader.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto 3) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto 3) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "RenderWare.h" #include "CColModel.h" diff --git a/plugin_III/game_III/CFileMgr.h b/plugin_III/game_III/CFileMgr.h index 986d5460e..0498efe75 100644 --- a/plugin_III/game_III/CFileMgr.h +++ b/plugin_III/game_III/CFileMgr.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #define FILESTREAM int diff --git a/plugin_III/game_III/CFire.h b/plugin_III/game_III/CFire.h index 77e0f25d4..465c97010 100644 --- a/plugin_III/game_III/CFire.h +++ b/plugin_III/game_III/CFire.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CEntity.h" diff --git a/plugin_III/game_III/CFireManager.h b/plugin_III/game_III/CFireManager.h index b9ae5b435..137d2c932 100644 --- a/plugin_III/game_III/CFireManager.h +++ b/plugin_III/game_III/CFireManager.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CFire.h" diff --git a/plugin_III/game_III/CFont.h b/plugin_III/game_III/CFont.h index 6a662da43..ec30d87fb 100644 --- a/plugin_III/game_III/CFont.h +++ b/plugin_III/game_III/CFont.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CRGBA.h" #include "CRect.h" diff --git a/plugin_III/game_III/CFontDetails.cpp b/plugin_III/game_III/CFontDetails.cpp index ccc8a7e89..603e0005a 100644 --- a/plugin_III/game_III/CFontDetails.cpp +++ b/plugin_III/game_III/CFontDetails.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto 3) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto 3) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CFontDetails.h" diff --git a/plugin_III/game_III/CFontDetails.h b/plugin_III/game_III/CFontDetails.h index 658a4c97b..37bd166fd 100644 --- a/plugin_III/game_III/CFontDetails.h +++ b/plugin_III/game_III/CFontDetails.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto 3) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto 3) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CRGBA.h" #include "CVector2D.h" diff --git a/plugin_III/game_III/CGame.h b/plugin_III/game_III/CGame.h index a397e3997..4bd5dcbd9 100644 --- a/plugin_III/game_III/CGame.h +++ b/plugin_III/game_III/CGame.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "RenderWare.h" diff --git a/plugin_III/game_III/CGameLogic.h b/plugin_III/game_III/CGameLogic.h index 46db4badb..c16540a2d 100644 --- a/plugin_III/game_III/CGameLogic.h +++ b/plugin_III/game_III/CGameLogic.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CPlayerPed.h" diff --git a/plugin_III/game_III/CGangInfo.h b/plugin_III/game_III/CGangInfo.h index 83e5be1c0..aef328f9c 100644 --- a/plugin_III/game_III/CGangInfo.h +++ b/plugin_III/game_III/CGangInfo.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" class PLUGIN_API CGangInfo { diff --git a/plugin_III/game_III/CGangs.h b/plugin_III/game_III/CGangs.h index f72073a8b..7bbfaf066 100644 --- a/plugin_III/game_III/CGangs.h +++ b/plugin_III/game_III/CGangs.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CGangInfo.h" diff --git a/plugin_III/game_III/CGarage.h b/plugin_III/game_III/CGarage.h index 557462435..c225503ae 100644 --- a/plugin_III/game_III/CGarage.h +++ b/plugin_III/game_III/CGarage.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CObject.h" #include "CStoredCar.h" diff --git a/plugin_III/game_III/CGarages.h b/plugin_III/game_III/CGarages.h index d66e8f7d1..fe6907b5f 100644 --- a/plugin_III/game_III/CGarages.h +++ b/plugin_III/game_III/CGarages.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CGarage.h" class CAutomobile; diff --git a/plugin_III/game_III/CGeneral.h b/plugin_III/game_III/CGeneral.h index 775628361..ae572a636 100644 --- a/plugin_III/game_III/CGeneral.h +++ b/plugin_III/game_III/CGeneral.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" class PLUGIN_API CGeneral { diff --git a/plugin_III/game_III/CGlass.h b/plugin_III/game_III/CGlass.h index 916a9067b..327b9f8f5 100644 --- a/plugin_III/game_III/CGlass.h +++ b/plugin_III/game_III/CGlass.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CFallingGlassPane.h" #include "CEntity.h" diff --git a/plugin_III/game_III/CIniFile.h b/plugin_III/game_III/CIniFile.h index 537143869..79ccd9965 100644 --- a/plugin_III/game_III/CIniFile.h +++ b/plugin_III/game_III/CIniFile.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" class PLUGIN_API CIniFile { diff --git a/plugin_III/game_III/CInstance.h b/plugin_III/game_III/CInstance.h index d72c48b39..1ef98048a 100644 --- a/plugin_III/game_III/CInstance.h +++ b/plugin_III/game_III/CInstance.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CPlaceable.h" diff --git a/plugin_III/game_III/CKeyboardState.cpp b/plugin_III/game_III/CKeyboardState.cpp index b93cf4d75..fc10e2c28 100644 --- a/plugin_III/game_III/CKeyboardState.cpp +++ b/plugin_III/game_III/CKeyboardState.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto 3) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto 3) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CKeyboardState.h" diff --git a/plugin_III/game_III/CKeyboardState.h b/plugin_III/game_III/CKeyboardState.h index 8ba31ed05..bdc9d64e2 100644 --- a/plugin_III/game_III/CKeyboardState.h +++ b/plugin_III/game_III/CKeyboardState.h @@ -1,13 +1,10 @@ - - /* -Plugin-SDK (Grand Theft Auto 3) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto 3) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" class CKeyboardState { diff --git a/plugin_III/game_III/CLines.h b/plugin_III/game_III/CLines.h index bbaebd2c6..333409d4e 100644 --- a/plugin_III/game_III/CLines.h +++ b/plugin_III/game_III/CLines.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" class PLUGIN_API CLines { diff --git a/plugin_III/game_III/CLink.h b/plugin_III/game_III/CLink.h index c208a0276..65c48d6ae 100644 --- a/plugin_III/game_III/CLink.h +++ b/plugin_III/game_III/CLink.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" template diff --git a/plugin_III/game_III/CLinkList.h b/plugin_III/game_III/CLinkList.h index 1c5eaa2b1..9ef987d6e 100644 --- a/plugin_III/game_III/CLinkList.h +++ b/plugin_III/game_III/CLinkList.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CLink.h" diff --git a/plugin_III/game_III/CMBlur.h b/plugin_III/game_III/CMBlur.h index 012e7aa9d..8bc4dceff 100644 --- a/plugin_III/game_III/CMBlur.h +++ b/plugin_III/game_III/CMBlur.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "RenderWare.h" diff --git a/plugin_III/game_III/CMessages.h b/plugin_III/game_III/CMessages.h index 4602fb594..cdd0bc12f 100644 --- a/plugin_III/game_III/CMessages.h +++ b/plugin_III/game_III/CMessages.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" struct tMessage { diff --git a/plugin_III/game_III/CMissionCleanup.h b/plugin_III/game_III/CMissionCleanup.h index 0734e4ce8..6d36cd267 100644 --- a/plugin_III/game_III/CMissionCleanup.h +++ b/plugin_III/game_III/CMissionCleanup.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" enum PLUGIN_API eCleanupEntityType : unsigned char { diff --git a/plugin_III/game_III/CMloModelInfo.h b/plugin_III/game_III/CMloModelInfo.h index 47a1edfca..184e385ee 100644 --- a/plugin_III/game_III/CMloModelInfo.h +++ b/plugin_III/game_III/CMloModelInfo.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CClumpModelInfo.h" diff --git a/plugin_III/game_III/CMoneyMessage.h b/plugin_III/game_III/CMoneyMessage.h index 2bfc2eddf..c7968b2be 100644 --- a/plugin_III/game_III/CMoneyMessage.h +++ b/plugin_III/game_III/CMoneyMessage.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" #include "CRGBA.h" diff --git a/plugin_III/game_III/CMoneyMessages.h b/plugin_III/game_III/CMoneyMessages.h index e1c998c8e..4bf80bc2f 100644 --- a/plugin_III/game_III/CMoneyMessages.h +++ b/plugin_III/game_III/CMoneyMessages.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CMoneyMessage.h" diff --git a/plugin_III/game_III/CMotionBlurStreaks.h b/plugin_III/game_III/CMotionBlurStreaks.h index 5656b7835..bbff88cfe 100644 --- a/plugin_III/game_III/CMotionBlurStreaks.h +++ b/plugin_III/game_III/CMotionBlurStreaks.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" #include "CRegisteredMotionBlurStreak.h" diff --git a/plugin_III/game_III/CMouseControllerState.h b/plugin_III/game_III/CMouseControllerState.h index bfcecd0c6..11a609056 100644 --- a/plugin_III/game_III/CMouseControllerState.h +++ b/plugin_III/game_III/CMouseControllerState.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" class PLUGIN_API CMouseControllerState { diff --git a/plugin_III/game_III/CMousePointerStateHelper.h b/plugin_III/game_III/CMousePointerStateHelper.h index b75a0dd84..95db73634 100644 --- a/plugin_III/game_III/CMousePointerStateHelper.h +++ b/plugin_III/game_III/CMousePointerStateHelper.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CMouseControllerState.h" diff --git a/plugin_III/game_III/CMovie.h b/plugin_III/game_III/CMovie.h index b11de8fc3..1d667a0c4 100644 --- a/plugin_III/game_III/CMovie.h +++ b/plugin_III/game_III/CMovie.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" diff --git a/plugin_III/game_III/CMovingThing.h b/plugin_III/game_III/CMovingThing.h index 966eaf1cd..85666fa5b 100644 --- a/plugin_III/game_III/CMovingThing.h +++ b/plugin_III/game_III/CMovingThing.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CEntity.h" diff --git a/plugin_III/game_III/CMovingThings.h b/plugin_III/game_III/CMovingThings.h index 280d5f9ec..c01ab509b 100644 --- a/plugin_III/game_III/CMovingThings.h +++ b/plugin_III/game_III/CMovingThings.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CMovingThing.h" #include "CScrollBar.h" diff --git a/plugin_III/game_III/CNodeAddress.h b/plugin_III/game_III/CNodeAddress.h index 3ad6db8df..904cb5a2e 100644 --- a/plugin_III/game_III/CNodeAddress.h +++ b/plugin_III/game_III/CNodeAddress.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" class PLUGIN_API CNodeAddress diff --git a/plugin_III/game_III/CObject.h b/plugin_III/game_III/CObject.h index 64056c959..6b6ce2241 100644 --- a/plugin_III/game_III/CObject.h +++ b/plugin_III/game_III/CObject.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CPhysical.h" #include "CMatrix.h" diff --git a/plugin_III/game_III/CObjectData.h b/plugin_III/game_III/CObjectData.h index a8178bc67..49e299b1f 100644 --- a/plugin_III/game_III/CObjectData.h +++ b/plugin_III/game_III/CObjectData.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CObject.h" diff --git a/plugin_III/game_III/COneSheet.h b/plugin_III/game_III/COneSheet.h index 5242e47f4..c3e7e6d0e 100644 --- a/plugin_III/game_III/COneSheet.h +++ b/plugin_III/game_III/COneSheet.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" diff --git a/plugin_III/game_III/COnscreenTimer.h b/plugin_III/game_III/COnscreenTimer.h index 65177e211..07f604e56 100644 --- a/plugin_III/game_III/COnscreenTimer.h +++ b/plugin_III/game_III/COnscreenTimer.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "COnscreenTimerEntry.h" diff --git a/plugin_III/game_III/COnscreenTimerEntry.h b/plugin_III/game_III/COnscreenTimerEntry.h index 6ad7320ca..d8e1aafc7 100644 --- a/plugin_III/game_III/COnscreenTimerEntry.h +++ b/plugin_III/game_III/COnscreenTimerEntry.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" class PLUGIN_API COnscreenTimerEntry { diff --git a/plugin_III/game_III/CPacManPickup.h b/plugin_III/game_III/CPacManPickup.h index fda357521..31dc941ee 100644 --- a/plugin_III/game_III/CPacManPickup.h +++ b/plugin_III/game_III/CPacManPickup.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CObject.h" diff --git a/plugin_III/game_III/CPacManPickups.h b/plugin_III/game_III/CPacManPickups.h index ec4e61302..90f5eedea 100644 --- a/plugin_III/game_III/CPacManPickups.h +++ b/plugin_III/game_III/CPacManPickups.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CPacManPickup.h" diff --git a/plugin_III/game_III/CPad.h b/plugin_III/game_III/CPad.h index b312afd90..5d4406b73 100644 --- a/plugin_III/game_III/CPad.h +++ b/plugin_III/game_III/CPad.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CMouseControllerState.h" #include "CKeyboardState.h" diff --git a/plugin_III/game_III/CPager.h b/plugin_III/game_III/CPager.h index 790eead01..b7e8cc952 100644 --- a/plugin_III/game_III/CPager.h +++ b/plugin_III/game_III/CPager.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" struct PagerMessage { diff --git a/plugin_III/game_III/CParticle.h b/plugin_III/game_III/CParticle.h index 4eddc48ec..7ed0ec3c5 100644 --- a/plugin_III/game_III/CParticle.h +++ b/plugin_III/game_III/CParticle.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "RenderWare.h" #include "tParticleType.h" diff --git a/plugin_III/game_III/CParticleObject.h b/plugin_III/game_III/CParticleObject.h index d1e3f858c..dc264b166 100644 --- a/plugin_III/game_III/CParticleObject.h +++ b/plugin_III/game_III/CParticleObject.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CPlaceable.h" #include "CParticle.h" diff --git a/plugin_III/game_III/CPathFind.h b/plugin_III/game_III/CPathFind.h index 4bed8fca3..2ec8d66fd 100644 --- a/plugin_III/game_III/CPathFind.h +++ b/plugin_III/game_III/CPathFind.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector2D.h" #include "CPathNode.h" diff --git a/plugin_III/game_III/CPathNode.h b/plugin_III/game_III/CPathNode.h index 0eb05fb64..b8eacff83 100644 --- a/plugin_III/game_III/CPathNode.h +++ b/plugin_III/game_III/CPathNode.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" diff --git a/plugin_III/game_III/CPathSplines.h b/plugin_III/game_III/CPathSplines.h index af8b6b497..dcc30de5a 100644 --- a/plugin_III/game_III/CPathSplines.h +++ b/plugin_III/game_III/CPathSplines.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" struct CPathSpline { diff --git a/plugin_III/game_III/CPedIK.h b/plugin_III/game_III/CPedIK.h index b892baafa..1488cc7cb 100644 --- a/plugin_III/game_III/CPedIK.h +++ b/plugin_III/game_III/CPedIK.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "AnimBlendFrameData.h" #include "CVector.h" diff --git a/plugin_III/game_III/CPedModelInfo.h b/plugin_III/game_III/CPedModelInfo.h index e4111c2f4..de9d9e172 100644 --- a/plugin_III/game_III/CPedModelInfo.h +++ b/plugin_III/game_III/CPedModelInfo.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CClumpModelInfo.h" #include "ePedType.h" diff --git a/plugin_III/game_III/CPedPath.h b/plugin_III/game_III/CPedPath.h index c7904d04a..f7f9a5fe4 100644 --- a/plugin_III/game_III/CPedPath.h +++ b/plugin_III/game_III/CPedPath.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" #include "CPedPathNode.h" diff --git a/plugin_III/game_III/CPedPathNode.h b/plugin_III/game_III/CPedPathNode.h index 099fdcf0a..b2a47276c 100644 --- a/plugin_III/game_III/CPedPathNode.h +++ b/plugin_III/game_III/CPedPathNode.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" class PLUGIN_API CPedPathNode { diff --git a/plugin_III/game_III/CPedPlacement.h b/plugin_III/game_III/CPedPlacement.h index 8a974f53d..9c979c09a 100644 --- a/plugin_III/game_III/CPedPlacement.h +++ b/plugin_III/game_III/CPedPlacement.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CEntity.h" diff --git a/plugin_III/game_III/CPedStats.h b/plugin_III/game_III/CPedStats.h index ff4058c78..909bfe2d2 100644 --- a/plugin_III/game_III/CPedStats.h +++ b/plugin_III/game_III/CPedStats.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "ePedStats.h" diff --git a/plugin_III/game_III/CPedType.cpp b/plugin_III/game_III/CPedType.cpp index 4c3b27560..8682ce806 100644 --- a/plugin_III/game_III/CPedType.cpp +++ b/plugin_III/game_III/CPedType.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto 3) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto 3) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CPedType.h" diff --git a/plugin_III/game_III/CPedType.h b/plugin_III/game_III/CPedType.h index 663739bdd..4c8334c07 100644 --- a/plugin_III/game_III/CPedType.h +++ b/plugin_III/game_III/CPedType.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto 3) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto 3) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" class CPedType { diff --git a/plugin_III/game_III/CPhone.h b/plugin_III/game_III/CPhone.h index 5d003559f..e27f29796 100644 --- a/plugin_III/game_III/CPhone.h +++ b/plugin_III/game_III/CPhone.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" #include "CBuilding.h" diff --git a/plugin_III/game_III/CPhoneInfo.h b/plugin_III/game_III/CPhoneInfo.h index 05ab79e28..fb3d363c3 100644 --- a/plugin_III/game_III/CPhoneInfo.h +++ b/plugin_III/game_III/CPhoneInfo.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CPhone.h" #include "CVector.h" diff --git a/plugin_III/game_III/CPickup.h b/plugin_III/game_III/CPickup.h index d4a7bb3f5..58dbd50d6 100644 --- a/plugin_III/game_III/CPickup.h +++ b/plugin_III/game_III/CPickup.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CObject.h" #include "CPlayerPed.h" diff --git a/plugin_III/game_III/CPickups.h b/plugin_III/game_III/CPickups.h index 7d1f75f98..a17f308a8 100644 --- a/plugin_III/game_III/CPickups.h +++ b/plugin_III/game_III/CPickups.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector2D.h" #include "eWeaponType.h" diff --git a/plugin_III/game_III/CPlaceName.h b/plugin_III/game_III/CPlaceName.h index 4c913d6c7..2d2c1801f 100644 --- a/plugin_III/game_III/CPlaceName.h +++ b/plugin_III/game_III/CPlaceName.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CZone.h" diff --git a/plugin_III/game_III/CPlayerInfo.h b/plugin_III/game_III/CPlayerInfo.h index c47a3f23c..7bf473e31 100644 --- a/plugin_III/game_III/CPlayerInfo.h +++ b/plugin_III/game_III/CPlayerInfo.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CAutomobile.h" diff --git a/plugin_III/game_III/CPlayerPed.h b/plugin_III/game_III/CPlayerPed.h index 6b904a946..3712acdc1 100644 --- a/plugin_III/game_III/CPlayerPed.h +++ b/plugin_III/game_III/CPlayerPed.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CPed.h" #include "CWanted.h" diff --git a/plugin_III/game_III/CPlayerSkin.h b/plugin_III/game_III/CPlayerSkin.h index ce94d83d8..c98785931 100644 --- a/plugin_III/game_III/CPlayerSkin.h +++ b/plugin_III/game_III/CPlayerSkin.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "RenderWare.h" diff --git a/plugin_III/game_III/CPointLights.cpp b/plugin_III/game_III/CPointLights.cpp index 2fc1e332f..410b10605 100644 --- a/plugin_III/game_III/CPointLights.cpp +++ b/plugin_III/game_III/CPointLights.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto 3) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto 3) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CPointLights.h" diff --git a/plugin_III/game_III/CPointLights.h b/plugin_III/game_III/CPointLights.h index a00538f74..1ae2d0393 100644 --- a/plugin_III/game_III/CPointLights.h +++ b/plugin_III/game_III/CPointLights.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto 3) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto 3) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" diff --git a/plugin_III/game_III/CPools.h b/plugin_III/game_III/CPools.h index 013743343..39e83a99b 100644 --- a/plugin_III/game_III/CPools.h +++ b/plugin_III/game_III/CPools.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CPed.h" #include "CVehicle.h" diff --git a/plugin_III/game_III/CPopulation.h b/plugin_III/game_III/CPopulation.h index 3831678b3..7a7170b63 100644 --- a/plugin_III/game_III/CPopulation.h +++ b/plugin_III/game_III/CPopulation.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "eLevelName.h" #include "CVector.h" diff --git a/plugin_III/game_III/CProjectile.h b/plugin_III/game_III/CProjectile.h index 70b07f0dd..c7760a6de 100644 --- a/plugin_III/game_III/CProjectile.h +++ b/plugin_III/game_III/CProjectile.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CObject.h" diff --git a/plugin_III/game_III/CProjectileInfo.h b/plugin_III/game_III/CProjectileInfo.h index 25b5044fb..c6ed04fac 100644 --- a/plugin_III/game_III/CProjectileInfo.h +++ b/plugin_III/game_III/CProjectileInfo.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "eWeaponType.h" #include "CProjectile.h" diff --git a/plugin_III/game_III/CQuaternion.h b/plugin_III/game_III/CQuaternion.h index 3275b9f36..5999afd64 100644 --- a/plugin_III/game_III/CQuaternion.h +++ b/plugin_III/game_III/CQuaternion.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" #include "RenderWare.h" diff --git a/plugin_III/game_III/CRadar.h b/plugin_III/game_III/CRadar.h index 7ca15aa4a..b634d2d5a 100644 --- a/plugin_III/game_III/CRadar.h +++ b/plugin_III/game_III/CRadar.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector2D.h" #include "CVector.h" diff --git a/plugin_III/game_III/CRange2D.h b/plugin_III/game_III/CRange2D.h index 7ac5a9680..6e86b7e5a 100644 --- a/plugin_III/game_III/CRange2D.h +++ b/plugin_III/game_III/CRange2D.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector2D.h" diff --git a/plugin_III/game_III/CRecordDataForChase.h b/plugin_III/game_III/CRecordDataForChase.h index a422fe298..f57ce6edf 100644 --- a/plugin_III/game_III/CRecordDataForChase.h +++ b/plugin_III/game_III/CRecordDataForChase.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CAutomobile.h" #include "CMatrix.h" diff --git a/plugin_III/game_III/CRecordDataForGame.h b/plugin_III/game_III/CRecordDataForGame.h index 127aece5c..47991c267 100644 --- a/plugin_III/game_III/CRecordDataForGame.h +++ b/plugin_III/game_III/CRecordDataForGame.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CControllerState.h" diff --git a/plugin_III/game_III/CRect.h b/plugin_III/game_III/CRect.h index 119de9993..0170f5579 100644 --- a/plugin_III/game_III/CRect.h +++ b/plugin_III/game_III/CRect.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector2D.h" diff --git a/plugin_III/game_III/CReference.h b/plugin_III/game_III/CReference.h index 065b15b9e..e1e63a503 100644 --- a/plugin_III/game_III/CReference.h +++ b/plugin_III/game_III/CReference.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" class CEntity; diff --git a/plugin_III/game_III/CReferences.h b/plugin_III/game_III/CReferences.h index d23ef9b07..d23adc4a9 100644 --- a/plugin_III/game_III/CReferences.h +++ b/plugin_III/game_III/CReferences.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CReference.h" diff --git a/plugin_III/game_III/CRegisteredCorona.h b/plugin_III/game_III/CRegisteredCorona.h index 532275589..19273ae5b 100644 --- a/plugin_III/game_III/CRegisteredCorona.h +++ b/plugin_III/game_III/CRegisteredCorona.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "RenderWare.h" #include "CVector.h" diff --git a/plugin_III/game_III/CRegisteredMotionBlurStreak.h b/plugin_III/game_III/CRegisteredMotionBlurStreak.h index a54a6939f..636267bf2 100644 --- a/plugin_III/game_III/CRegisteredMotionBlurStreak.h +++ b/plugin_III/game_III/CRegisteredMotionBlurStreak.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CRGBA.h" #include "CVector.h" diff --git a/plugin_III/game_III/CRegisteredShinyText.h b/plugin_III/game_III/CRegisteredShinyText.h index 9d1bed76c..12e096294 100644 --- a/plugin_III/game_III/CRegisteredShinyText.h +++ b/plugin_III/game_III/CRegisteredShinyText.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" #include "RenderWare.h" diff --git a/plugin_III/game_III/CRemote.h b/plugin_III/game_III/CRemote.h index 139af7be6..ff2174bd7 100644 --- a/plugin_III/game_III/CRemote.h +++ b/plugin_III/game_III/CRemote.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" class PLUGIN_API CRemote { diff --git a/plugin_III/game_III/CRestart.h b/plugin_III/game_III/CRestart.h index 38f983c9b..79a21a717 100644 --- a/plugin_III/game_III/CRestart.h +++ b/plugin_III/game_III/CRestart.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" diff --git a/plugin_III/game_III/CRoadBlocks.h b/plugin_III/game_III/CRoadBlocks.h index b60c922bd..347a4aab2 100644 --- a/plugin_III/game_III/CRoadBlocks.h +++ b/plugin_III/game_III/CRoadBlocks.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVehicle.h" diff --git a/plugin_III/game_III/CRouteNode.h b/plugin_III/game_III/CRouteNode.h index b5fb4af7c..de8aef211 100644 --- a/plugin_III/game_III/CRouteNode.h +++ b/plugin_III/game_III/CRouteNode.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" diff --git a/plugin_III/game_III/CRubbish.h b/plugin_III/game_III/CRubbish.h index a67140901..831cce66f 100644 --- a/plugin_III/game_III/CRubbish.h +++ b/plugin_III/game_III/CRubbish.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVehicle.h" #include "COneSheet.h" diff --git a/plugin_III/game_III/CScene.h b/plugin_III/game_III/CScene.h index 47ec566f8..af52b9a40 100644 --- a/plugin_III/game_III/CScene.h +++ b/plugin_III/game_III/CScene.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "RenderWare.h" diff --git a/plugin_III/game_III/CSceneEdit.h b/plugin_III/game_III/CSceneEdit.h index 72d00e407..30596d3a0 100644 --- a/plugin_III/game_III/CSceneEdit.h +++ b/plugin_III/game_III/CSceneEdit.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CMovie.h" #include "CPed.h" diff --git a/plugin_III/game_III/CScrollBar.h b/plugin_III/game_III/CScrollBar.h index cb08836d0..4c62f962d 100644 --- a/plugin_III/game_III/CScrollBar.h +++ b/plugin_III/game_III/CScrollBar.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" diff --git a/plugin_III/game_III/CSector.h b/plugin_III/game_III/CSector.h index 47bccf4eb..e8d39b80a 100644 --- a/plugin_III/game_III/CSector.h +++ b/plugin_III/game_III/CSector.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CPtrList.h" diff --git a/plugin_III/game_III/CShadows.h b/plugin_III/game_III/CShadows.h index bee299aff..0941d1094 100644 --- a/plugin_III/game_III/CShadows.h +++ b/plugin_III/game_III/CShadows.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "RenderWare.h" #include "CVector.h" diff --git a/plugin_III/game_III/CShinyTexts.h b/plugin_III/game_III/CShinyTexts.h index b0bfb2901..391a136dd 100644 --- a/plugin_III/game_III/CShinyTexts.h +++ b/plugin_III/game_III/CShinyTexts.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CRegisteredShinyText.h" diff --git a/plugin_III/game_III/CShotInfo.h b/plugin_III/game_III/CShotInfo.h index bbd1ec2f1..9db0ccb06 100644 --- a/plugin_III/game_III/CShotInfo.h +++ b/plugin_III/game_III/CShotInfo.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "eWeaponType.h" #include "CEntity.h" diff --git a/plugin_III/game_III/CSimpleModelInfo.h b/plugin_III/game_III/CSimpleModelInfo.h index 2f256a721..783f8c538 100644 --- a/plugin_III/game_III/CSimpleModelInfo.h +++ b/plugin_III/game_III/CSimpleModelInfo.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CBaseModelInfo.h" #include "RenderWare.h" diff --git a/plugin_III/game_III/CSkidmark.h b/plugin_III/game_III/CSkidmark.h index 81812ab18..486f40e28 100644 --- a/plugin_III/game_III/CSkidmark.h +++ b/plugin_III/game_III/CSkidmark.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" diff --git a/plugin_III/game_III/CSkidmarks.h b/plugin_III/game_III/CSkidmarks.h index 69f83ffa2..0ba866263 100644 --- a/plugin_III/game_III/CSkidmarks.h +++ b/plugin_III/game_III/CSkidmarks.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CSkidmark.h" #include "RenderWare.h" diff --git a/plugin_III/game_III/CSpecialFX.h b/plugin_III/game_III/CSpecialFX.h index 809634965..675af2fee 100644 --- a/plugin_III/game_III/CSpecialFX.h +++ b/plugin_III/game_III/CSpecialFX.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "RenderWare.h" diff --git a/plugin_III/game_III/CSpecialParticleStuff.h b/plugin_III/game_III/CSpecialParticleStuff.h index 5686ee4cf..de61b03d4 100644 --- a/plugin_III/game_III/CSpecialParticleStuff.h +++ b/plugin_III/game_III/CSpecialParticleStuff.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CMatrix.h" diff --git a/plugin_III/game_III/CSphere.h b/plugin_III/game_III/CSphere.h index 472ded8db..762982e0c 100644 --- a/plugin_III/game_III/CSphere.h +++ b/plugin_III/game_III/CSphere.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" diff --git a/plugin_III/game_III/CSprite.h b/plugin_III/game_III/CSprite.h index 0a0380f7d..22f92c0c3 100644 --- a/plugin_III/game_III/CSprite.h +++ b/plugin_III/game_III/CSprite.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "RenderWare.h" #include "CRect.h" diff --git a/plugin_III/game_III/CSprite2d.h b/plugin_III/game_III/CSprite2d.h index 1578d72b5..d6abc5ded 100644 --- a/plugin_III/game_III/CSprite2d.h +++ b/plugin_III/game_III/CSprite2d.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "RenderWare.h" #include "CRect.h" diff --git a/plugin_III/game_III/CStats.cpp b/plugin_III/game_III/CStats.cpp index 0c2894de1..ec06329ea 100644 --- a/plugin_III/game_III/CStats.cpp +++ b/plugin_III/game_III/CStats.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto 3) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto 3) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CStats.h" diff --git a/plugin_III/game_III/CStats.h b/plugin_III/game_III/CStats.h index 5e9eca210..a76ae37b4 100644 --- a/plugin_III/game_III/CStats.h +++ b/plugin_III/game_III/CStats.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" class CStats { diff --git a/plugin_III/game_III/CStoredCar.h b/plugin_III/game_III/CStoredCar.h index 21ca08583..5311f34e7 100644 --- a/plugin_III/game_III/CStoredCar.h +++ b/plugin_III/game_III/CStoredCar.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" #include "CVehicle.h" diff --git a/plugin_III/game_III/CStoredCollPoly.h b/plugin_III/game_III/CStoredCollPoly.h index d8010447a..9c50a8392 100644 --- a/plugin_III/game_III/CStoredCollPoly.h +++ b/plugin_III/game_III/CStoredCollPoly.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" diff --git a/plugin_III/game_III/CStreamingInfo.cpp b/plugin_III/game_III/CStreamingInfo.cpp index 1c97d483b..c3dd2b14a 100644 --- a/plugin_III/game_III/CStreamingInfo.cpp +++ b/plugin_III/game_III/CStreamingInfo.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto 3) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto 3) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CStreamingInfo.h" diff --git a/plugin_III/game_III/CStuckCarCheck.h b/plugin_III/game_III/CStuckCarCheck.h index e9f69c953..d464b49c6 100644 --- a/plugin_III/game_III/CStuckCarCheck.h +++ b/plugin_III/game_III/CStuckCarCheck.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" diff --git a/plugin_III/game_III/CSurfaceTable.h b/plugin_III/game_III/CSurfaceTable.h index fbce528af..6f964a57e 100644 --- a/plugin_III/game_III/CSurfaceTable.h +++ b/plugin_III/game_III/CSurfaceTable.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CColPoint.h" diff --git a/plugin_III/game_III/CTempNode.h b/plugin_III/game_III/CTempNode.h index f048b106e..4105a3ee5 100644 --- a/plugin_III/game_III/CTempNode.h +++ b/plugin_III/game_III/CTempNode.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" diff --git a/plugin_III/game_III/CText.h b/plugin_III/game_III/CText.h index a23fbd9ef..4a8902948 100644 --- a/plugin_III/game_III/CText.h +++ b/plugin_III/game_III/CText.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" struct PLUGIN_API CKeyEntry { diff --git a/plugin_III/game_III/CTheCarGenerators.h b/plugin_III/game_III/CTheCarGenerators.h index 67ff80bf4..26319d9d5 100644 --- a/plugin_III/game_III/CTheCarGenerators.h +++ b/plugin_III/game_III/CTheCarGenerators.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CCarGenerator.h" diff --git a/plugin_III/game_III/CTheScripts.h b/plugin_III/game_III/CTheScripts.h index e415fb3a9..38a06d7cc 100644 --- a/plugin_III/game_III/CTheScripts.h +++ b/plugin_III/game_III/CTheScripts.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CFont.h" #include "CRunningScript.h" diff --git a/plugin_III/game_III/CTimeCycle.h b/plugin_III/game_III/CTimeCycle.h index 86f5d3935..b244d24d4 100644 --- a/plugin_III/game_III/CTimeCycle.h +++ b/plugin_III/game_III/CTimeCycle.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" diff --git a/plugin_III/game_III/CTimeModelInfo.h b/plugin_III/game_III/CTimeModelInfo.h index 366143962..ac48ca899 100644 --- a/plugin_III/game_III/CTimeModelInfo.h +++ b/plugin_III/game_III/CTimeModelInfo.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CSimpleModelInfo.h" diff --git a/plugin_III/game_III/CTimeStep.h b/plugin_III/game_III/CTimeStep.h index 69eb3209a..67c31b8d7 100644 --- a/plugin_III/game_III/CTimeStep.h +++ b/plugin_III/game_III/CTimeStep.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" //! Pretty sure this class is not used by the game diff --git a/plugin_III/game_III/CTimer.h b/plugin_III/game_III/CTimer.h index b0fbd7c29..724716193 100644 --- a/plugin_III/game_III/CTimer.h +++ b/plugin_III/game_III/CTimer.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" class PLUGIN_API CTimer { diff --git a/plugin_III/game_III/CTowerClock.h b/plugin_III/game_III/CTowerClock.h index 410ba94a8..00580797d 100644 --- a/plugin_III/game_III/CTowerClock.h +++ b/plugin_III/game_III/CTowerClock.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" #include "RenderWare.h" diff --git a/plugin_III/game_III/CTrafficLights.h b/plugin_III/game_III/CTrafficLights.h index b06e2f29f..5da3e62e9 100644 --- a/plugin_III/game_III/CTrafficLights.h +++ b/plugin_III/game_III/CTrafficLights.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVehicle.h" #include "CEntity.h" diff --git a/plugin_III/game_III/CTrainCamNode.h b/plugin_III/game_III/CTrainCamNode.h index 44eb42d37..1315ed159 100644 --- a/plugin_III/game_III/CTrainCamNode.h +++ b/plugin_III/game_III/CTrainCamNode.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" diff --git a/plugin_III/game_III/CTrainDoor.h b/plugin_III/game_III/CTrainDoor.h index 7a2e45a9b..a465f682c 100644 --- a/plugin_III/game_III/CTrainDoor.h +++ b/plugin_III/game_III/CTrainDoor.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" enum PLUGIN_API eTrainDoorStates { diff --git a/plugin_III/game_III/CTreadable.h b/plugin_III/game_III/CTreadable.h index 443e8e6d5..d86ea8f7f 100644 --- a/plugin_III/game_III/CTreadable.h +++ b/plugin_III/game_III/CTreadable.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CBuilding.h" diff --git a/plugin_III/game_III/CTxdStore.h b/plugin_III/game_III/CTxdStore.h index 307ee7a50..82c350248 100644 --- a/plugin_III/game_III/CTxdStore.h +++ b/plugin_III/game_III/CTxdStore.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "RenderWare.h" #include "TxdDef.h" diff --git a/plugin_III/game_III/CUpsideDownCarCheck.h b/plugin_III/game_III/CUpsideDownCarCheck.h index 8e26e30f9..228598a7a 100644 --- a/plugin_III/game_III/CUpsideDownCarCheck.h +++ b/plugin_III/game_III/CUpsideDownCarCheck.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" struct PLUGIN_API UpsideDownCarsData { diff --git a/plugin_III/game_III/CUserDisplay.h b/plugin_III/game_III/CUserDisplay.h index bfaa46645..99fcb208f 100644 --- a/plugin_III/game_III/CUserDisplay.h +++ b/plugin_III/game_III/CUserDisplay.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "COnscreenTimer.h" #include "CPager.h" diff --git a/plugin_III/game_III/CVisibilityPlugins.h b/plugin_III/game_III/CVisibilityPlugins.h index 37ba27428..9d5551423 100644 --- a/plugin_III/game_III/CVisibilityPlugins.h +++ b/plugin_III/game_III/CVisibilityPlugins.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CSimpleModelInfo.h" #include "RenderWare.h" diff --git a/plugin_III/game_III/CWanted.h b/plugin_III/game_III/CWanted.h index 43d85c70e..99c679a89 100644 --- a/plugin_III/game_III/CWanted.h +++ b/plugin_III/game_III/CWanted.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "eCrimeType.h" #include "CVector.h" diff --git a/plugin_III/game_III/CWaterCannon.h b/plugin_III/game_III/CWaterCannon.h index a2b9f4a96..08abb8fd5 100644 --- a/plugin_III/game_III/CWaterCannon.h +++ b/plugin_III/game_III/CWaterCannon.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" #include "RenderWare.h" diff --git a/plugin_III/game_III/CWaterCannons.h b/plugin_III/game_III/CWaterCannons.h index e3c7938c6..efed65138 100644 --- a/plugin_III/game_III/CWaterCannons.h +++ b/plugin_III/game_III/CWaterCannons.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CWaterCannon.h" diff --git a/plugin_III/game_III/CWeaponEffects.cpp b/plugin_III/game_III/CWeaponEffects.cpp index 2f2d4417a..0c32b88d1 100644 --- a/plugin_III/game_III/CWeaponEffects.cpp +++ b/plugin_III/game_III/CWeaponEffects.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto 3) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto 3) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CWeaponEffects.h" diff --git a/plugin_III/game_III/CWeaponEffects.h b/plugin_III/game_III/CWeaponEffects.h index 0f8f3e58a..c26263bff 100644 --- a/plugin_III/game_III/CWeaponEffects.h +++ b/plugin_III/game_III/CWeaponEffects.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto 3) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto 3) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" #include "CRGBA.h" diff --git a/plugin_III/game_III/CWeaponInfo.cpp b/plugin_III/game_III/CWeaponInfo.cpp index aad30a685..4743b9971 100644 --- a/plugin_III/game_III/CWeaponInfo.cpp +++ b/plugin_III/game_III/CWeaponInfo.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto 3) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto 3) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CWeaponInfo.h" diff --git a/plugin_III/game_III/CWeather.h b/plugin_III/game_III/CWeather.h index 4c191e9c3..72768fb4c 100644 --- a/plugin_III/game_III/CWeather.h +++ b/plugin_III/game_III/CWeather.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" diff --git a/plugin_III/game_III/CXtraCompsModelInfo.h b/plugin_III/game_III/CXtraCompsModelInfo.h index 52fa323cc..c4202ecf8 100644 --- a/plugin_III/game_III/CXtraCompsModelInfo.h +++ b/plugin_III/game_III/CXtraCompsModelInfo.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CClumpModelInfo.h" #include "RenderWare.h" diff --git a/plugin_III/game_III/CZone.h b/plugin_III/game_III/CZone.h index 90eeb6a4c..432a51a16 100644 --- a/plugin_III/game_III/CZone.h +++ b/plugin_III/game_III/CZone.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" #include "eZoneType.h" diff --git a/plugin_III/game_III/CZoneInfo.h b/plugin_III/game_III/CZoneInfo.h index 776df0773..72651f845 100644 --- a/plugin_III/game_III/CZoneInfo.h +++ b/plugin_III/game_III/CZoneInfo.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" struct CZoneInfo { diff --git a/plugin_III/game_III/C_PcSave.h b/plugin_III/game_III/C_PcSave.h index 3ad1f5b62..45e919229 100644 --- a/plugin_III/game_III/C_PcSave.h +++ b/plugin_III/game_III/C_PcSave.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" enum PLUGIN_API eSaveSlot : unsigned char { diff --git a/plugin_III/game_III/GenericGameStorage.h b/plugin_III/game_III/GenericGameStorage.h index 808d7fb86..e19e5b71f 100644 --- a/plugin_III/game_III/GenericGameStorage.h +++ b/plugin_III/game_III/GenericGameStorage.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "eLevelName.h" class CDate; diff --git a/plugin_III/game_III/NodeName.h b/plugin_III/game_III/NodeName.h index 34a402709..3bb86a4e0 100644 --- a/plugin_III/game_III/NodeName.h +++ b/plugin_III/game_III/NodeName.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "RenderWare.h" diff --git a/plugin_III/game_III/RenderBuffer.h b/plugin_III/game_III/RenderBuffer.h index 7142bedb3..2f3a5e65e 100644 --- a/plugin_III/game_III/RenderBuffer.h +++ b/plugin_III/game_III/RenderBuffer.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "RenderWare.h" diff --git a/plugin_III/game_III/RpAnimBlend.h b/plugin_III/game_III/RpAnimBlend.h index 38b44e2d0..c48c2c8e1 100644 --- a/plugin_III/game_III/RpAnimBlend.h +++ b/plugin_III/game_III/RpAnimBlend.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CAnimBlendNode.h" #include "CAnimBlendClumpData.h" diff --git a/plugin_III/game_III/RwObjectNameIdAssocation.h b/plugin_III/game_III/RwObjectNameIdAssocation.h index f9fcafce1..503835bb7 100644 --- a/plugin_III/game_III/RwObjectNameIdAssocation.h +++ b/plugin_III/game_III/RwObjectNameIdAssocation.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" class PLUGIN_API RwObjectNameIdAssocation { diff --git a/plugin_III/game_III/TxdDef.h b/plugin_III/game_III/TxdDef.h index f2f356589..0138d8b78 100644 --- a/plugin_III/game_III/TxdDef.h +++ b/plugin_III/game_III/TxdDef.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "RenderWare.h" diff --git a/plugin_III/game_III/cAudioCollision.h b/plugin_III/game_III/cAudioCollision.h index 1c4b3280c..b0244315b 100644 --- a/plugin_III/game_III/cAudioCollision.h +++ b/plugin_III/game_III/cAudioCollision.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CEntity.h" diff --git a/plugin_III/game_III/cAudioCollisionManager.h b/plugin_III/game_III/cAudioCollisionManager.h index 02dda5427..ca30e4de8 100644 --- a/plugin_III/game_III/cAudioCollisionManager.h +++ b/plugin_III/game_III/cAudioCollisionManager.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "cAudioCollision.h" diff --git a/plugin_III/game_III/cAudioManager.h b/plugin_III/game_III/cAudioManager.h index 9670103f7..1285d315c 100644 --- a/plugin_III/game_III/cAudioManager.h +++ b/plugin_III/game_III/cAudioManager.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVehicle.h" #include "cTransmission.h" diff --git a/plugin_III/game_III/cAudioScriptObject.h b/plugin_III/game_III/cAudioScriptObject.h index d09cd4f25..d99efb0dc 100644 --- a/plugin_III/game_III/cAudioScriptObject.h +++ b/plugin_III/game_III/cAudioScriptObject.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" diff --git a/plugin_III/game_III/cDMAudio.h b/plugin_III/game_III/cDMAudio.h index 9a969d43c..79ae30f54 100644 --- a/plugin_III/game_III/cDMAudio.h +++ b/plugin_III/game_III/cDMAudio.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "eAudioType.h" #include "eCrimeType.h" diff --git a/plugin_III/game_III/cMusicManager.h b/plugin_III/game_III/cMusicManager.h index 68b02e5f5..af6d170d0 100644 --- a/plugin_III/game_III/cMusicManager.h +++ b/plugin_III/game_III/cMusicManager.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVehicle.h" diff --git a/plugin_III/game_III/cParticleSystemMgr.h b/plugin_III/game_III/cParticleSystemMgr.h index d79881426..461a54b57 100644 --- a/plugin_III/game_III/cParticleSystemMgr.h +++ b/plugin_III/game_III/cParticleSystemMgr.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "tParticleSystemData.h" diff --git a/plugin_III/game_III/cTransmission.h b/plugin_III/game_III/cTransmission.h index 2fe31027d..dc6d9c29a 100644 --- a/plugin_III/game_III/cTransmission.h +++ b/plugin_III/game_III/cTransmission.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "tTransmissionGear.h" diff --git a/plugin_III/game_III/common.h b/plugin_III/game_III/common.h index 76524dc22..94360ce10 100644 --- a/plugin_III/game_III/common.h +++ b/plugin_III/game_III/common.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" #include "CPlayerPed.h" diff --git a/plugin_III/game_III/enums/eCoronaType.h b/plugin_III/game_III/enums/eCoronaType.h index 6ae4deced..91d6edb69 100644 --- a/plugin_III/game_III/enums/eCoronaType.h +++ b/plugin_III/game_III/enums/eCoronaType.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto 3) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto 3) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_III/game_III/enums/eCrimeType.h b/plugin_III/game_III/enums/eCrimeType.h index 75f057efc..55049325a 100644 --- a/plugin_III/game_III/enums/eCrimeType.h +++ b/plugin_III/game_III/enums/eCrimeType.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto 3) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto 3) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_III/game_III/enums/ePedModel.h b/plugin_III/game_III/enums/ePedModel.h index 89317d3e8..568eb625e 100644 --- a/plugin_III/game_III/enums/ePedModel.h +++ b/plugin_III/game_III/enums/ePedModel.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto 3) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto 3) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_III/game_III/enums/eSceneCommands.h b/plugin_III/game_III/enums/eSceneCommands.h index 097667375..418b94551 100644 --- a/plugin_III/game_III/enums/eSceneCommands.h +++ b/plugin_III/game_III/enums/eSceneCommands.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto 3) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto 3) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_III/game_III/enums/eWeaponModel.h b/plugin_III/game_III/enums/eWeaponModel.h index 3ea28ba7b..ff5ee8154 100644 --- a/plugin_III/game_III/enums/eWeaponModel.h +++ b/plugin_III/game_III/enums/eWeaponModel.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto 3) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto 3) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_III/game_III/enums/eWeaponType.h b/plugin_III/game_III/enums/eWeaponType.h index f42289246..ef7a76ca5 100644 --- a/plugin_III/game_III/enums/eWeaponType.h +++ b/plugin_III/game_III/enums/eWeaponType.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto 3) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto 3) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_III/game_III/enums/eWeather.h b/plugin_III/game_III/enums/eWeather.h index 710720bce..24e6f2d40 100644 --- a/plugin_III/game_III/enums/eWeather.h +++ b/plugin_III/game_III/enums/eWeather.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto 3) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto 3) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_III/game_III/enums/eWheelModel.h b/plugin_III/game_III/enums/eWheelModel.h index c7e681de0..ba52b4f5c 100644 --- a/plugin_III/game_III/enums/eWheelModel.h +++ b/plugin_III/game_III/enums/eWheelModel.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto 3) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto 3) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_III/game_III/tColSurface.h b/plugin_III/game_III/tColSurface.h index 12da72a96..6920c46fa 100644 --- a/plugin_III/game_III/tColSurface.h +++ b/plugin_III/game_III/tColSurface.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" struct PLUGIN_API tColSurface { diff --git a/plugin_III/game_III/tHandlingData.h b/plugin_III/game_III/tHandlingData.h index e0831472f..d2c99b1d1 100644 --- a/plugin_III/game_III/tHandlingData.h +++ b/plugin_III/game_III/tHandlingData.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" #include "cTransmission.h" diff --git a/plugin_III/game_III/tParticleSystemData.h b/plugin_III/game_III/tParticleSystemData.h index 04b32be1b..860f8f143 100644 --- a/plugin_III/game_III/tParticleSystemData.h +++ b/plugin_III/game_III/tParticleSystemData.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "RenderWare.h" #include "tParticleType.h" diff --git a/plugin_III/game_III/tParticleType.h b/plugin_III/game_III/tParticleType.h index 4ce0ee8ae..6efec668d 100644 --- a/plugin_III/game_III/tParticleType.h +++ b/plugin_III/game_III/tParticleType.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" enum PLUGIN_API tParticleType { diff --git a/plugin_III/game_III/tTransmissionGear.h b/plugin_III/game_III/tTransmissionGear.h index fd9a405fa..4f8a94aa9 100644 --- a/plugin_III/game_III/tTransmissionGear.h +++ b/plugin_III/game_III/tTransmissionGear.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto 3) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto 3) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" struct tTransmissionGear { diff --git a/plugin_IV/game_IV/CBaseDC.h b/plugin_IV/game_IV/CBaseDC.h index bf90550d7..c6b33ecd5 100644 --- a/plugin_IV/game_IV/CBaseDC.h +++ b/plugin_IV/game_IV/CBaseDC.h @@ -4,7 +4,6 @@ https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! */ - #pragma once #include "PluginBase.h" #include "CVirtualBase.h" diff --git a/plugin_IV/game_IV/CColPoint.h b/plugin_IV/game_IV/CColPoint.h index 8b4449786..225b6762d 100644 --- a/plugin_IV/game_IV/CColPoint.h +++ b/plugin_IV/game_IV/CColPoint.h @@ -4,7 +4,6 @@ https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! */ - #pragma once #include "PluginBase.h" #include "CVirtualBase.h" diff --git a/plugin_IV/game_IV/CDrawRadarCircleDC.h b/plugin_IV/game_IV/CDrawRadarCircleDC.h index 24dbade1c..0b47cef5c 100644 --- a/plugin_IV/game_IV/CDrawRadarCircleDC.h +++ b/plugin_IV/game_IV/CDrawRadarCircleDC.h @@ -4,7 +4,6 @@ https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! */ - #pragma once #include "PluginBase.h" #include "CBaseDC.h" diff --git a/plugin_IV/game_IV/CWeaponInfo.h b/plugin_IV/game_IV/CWeaponInfo.h index 97b5f8774..0be9ce04c 100644 --- a/plugin_IV/game_IV/CWeaponInfo.h +++ b/plugin_IV/game_IV/CWeaponInfo.h @@ -4,7 +4,6 @@ https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! */ - #pragma once #include "PluginBase.h" #include "Rage.h" diff --git a/plugin_IV/game_IV/CWorld.cpp b/plugin_IV/game_IV/CWorld.cpp index 55ff2617c..4b17884c3 100644 --- a/plugin_IV/game_IV/CWorld.cpp +++ b/plugin_IV/game_IV/CWorld.cpp @@ -4,7 +4,6 @@ https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! */ - #include "CWorld.h" int32_t& CWorld::PlayerInFocus = *gpatternt(int32_t, "A1 ? ? ? ? 83 F8 FF 74 12", 1); diff --git a/plugin_IV/game_IV/CWorld.h b/plugin_IV/game_IV/CWorld.h index 531a38948..afe4af44f 100644 --- a/plugin_IV/game_IV/CWorld.h +++ b/plugin_IV/game_IV/CWorld.h @@ -4,7 +4,6 @@ https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! */ - #pragma once #include "PluginBase.h" #include "CPlayerInfo.h" diff --git a/plugin_IV/game_IV/common.cpp b/plugin_IV/game_IV/common.cpp index 791ca8e53..2f0bef53f 100644 --- a/plugin_IV/game_IV/common.cpp +++ b/plugin_IV/game_IV/common.cpp @@ -4,7 +4,6 @@ https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! */ - #include "common.h" #include "CSprite2d.h" diff --git a/plugin_IV/plugin_IV.h b/plugin_IV/plugin_IV.h index 0ae8eb1e4..da98345bc 100644 --- a/plugin_IV/plugin_IV.h +++ b/plugin_IV/plugin_IV.h @@ -5,5 +5,4 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "plugin.h" diff --git a/plugin_iii_unreal/game_iii_unreal/common.h b/plugin_iii_unreal/game_iii_unreal/common.h index f8ffeb9bb..7c31efdaf 100644 --- a/plugin_iii_unreal/game_iii_unreal/common.h +++ b/plugin_iii_unreal/game_iii_unreal/common.h @@ -5,5 +5,4 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" diff --git a/plugin_iii_unreal/plugin_III_unreal.h b/plugin_iii_unreal/plugin_III_unreal.h index 2e813dd4e..820a01d2b 100644 --- a/plugin_iii_unreal/plugin_III_unreal.h +++ b/plugin_iii_unreal/plugin_III_unreal.h @@ -5,5 +5,4 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "plugin.h" diff --git a/plugin_sa/game_sa/AnimAssociationData.h b/plugin_sa/game_sa/AnimAssociationData.h index 85e4cccd3..4b5b91c3f 100644 --- a/plugin_sa/game_sa/AnimAssociationData.h +++ b/plugin_sa/game_sa/AnimAssociationData.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "RenderWare.h" diff --git a/plugin_sa/game_sa/AnimBlendFrameData.h b/plugin_sa/game_sa/AnimBlendFrameData.h index e216aac87..21b10ba13 100644 --- a/plugin_sa/game_sa/AnimBlendFrameData.h +++ b/plugin_sa/game_sa/AnimBlendFrameData.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" diff --git a/plugin_sa/game_sa/CAEAudioEntity.h b/plugin_sa/game_sa/CAEAudioEntity.h index 7b654caee..0d80facb5 100644 --- a/plugin_sa/game_sa/CAEAudioEntity.h +++ b/plugin_sa/game_sa/CAEAudioEntity.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CAESound.h" diff --git a/plugin_sa/game_sa/CAECollisionAudioEntity.cpp b/plugin_sa/game_sa/CAECollisionAudioEntity.cpp index 4e802294f..dc7eaa8a6 100644 --- a/plugin_sa/game_sa/CAECollisionAudioEntity.cpp +++ b/plugin_sa/game_sa/CAECollisionAudioEntity.cpp @@ -4,6 +4,5 @@ https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! */ - #include "CAECollisionAudioEntity.h" diff --git a/plugin_sa/game_sa/CAECollisionAudioEntity.h b/plugin_sa/game_sa/CAECollisionAudioEntity.h index 4ea857f7c..5ae00735f 100644 --- a/plugin_sa/game_sa/CAECollisionAudioEntity.h +++ b/plugin_sa/game_sa/CAECollisionAudioEntity.h @@ -4,7 +4,6 @@ https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! */ - #pragma once #include "PluginBase.h" #include "CAEAudioEntity.h" diff --git a/plugin_sa/game_sa/CAECutsceneTrackManager.cpp b/plugin_sa/game_sa/CAECutsceneTrackManager.cpp index 5bec109db..b24bc787a 100644 --- a/plugin_sa/game_sa/CAECutsceneTrackManager.cpp +++ b/plugin_sa/game_sa/CAECutsceneTrackManager.cpp @@ -4,7 +4,6 @@ https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! */ - #include "CAECutsceneTrackManager.h" CAECutsceneTrackManager& AECutsceneTrackManager = *(CAECutsceneTrackManager*)0x8AE554; diff --git a/plugin_sa/game_sa/CAECutsceneTrackManager.h b/plugin_sa/game_sa/CAECutsceneTrackManager.h index 6e12952be..f8ee92345 100644 --- a/plugin_sa/game_sa/CAECutsceneTrackManager.h +++ b/plugin_sa/game_sa/CAECutsceneTrackManager.h @@ -4,7 +4,6 @@ https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! */ - #pragma once #include "PluginBase.h" diff --git a/plugin_sa/game_sa/CAEDoorAudioEntity.cpp b/plugin_sa/game_sa/CAEDoorAudioEntity.cpp index 7eb7a8f62..a3381482e 100644 --- a/plugin_sa/game_sa/CAEDoorAudioEntity.cpp +++ b/plugin_sa/game_sa/CAEDoorAudioEntity.cpp @@ -4,5 +4,4 @@ https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! */ - #include "CAEDoorAudioEntity.h" diff --git a/plugin_sa/game_sa/CAEDoorAudioEntity.h b/plugin_sa/game_sa/CAEDoorAudioEntity.h index 46aa848d4..72672724d 100644 --- a/plugin_sa/game_sa/CAEDoorAudioEntity.h +++ b/plugin_sa/game_sa/CAEDoorAudioEntity.h @@ -4,7 +4,6 @@ https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! */ - #pragma once #include "PluginBase.h" #include "CAEAudioEntity.h" diff --git a/plugin_sa/game_sa/CAEExplosionAudioEntity.h b/plugin_sa/game_sa/CAEExplosionAudioEntity.h index 20b3bffdb..fa02dc472 100644 --- a/plugin_sa/game_sa/CAEExplosionAudioEntity.h +++ b/plugin_sa/game_sa/CAEExplosionAudioEntity.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CAEAudioEntity.h" diff --git a/plugin_sa/game_sa/CAEFireAudioEntity.h b/plugin_sa/game_sa/CAEFireAudioEntity.h index b1d40eb39..03668cf98 100644 --- a/plugin_sa/game_sa/CAEFireAudioEntity.h +++ b/plugin_sa/game_sa/CAEFireAudioEntity.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CAEAudioEntity.h" diff --git a/plugin_sa/game_sa/CAEFrontendAudioEntity.cpp b/plugin_sa/game_sa/CAEFrontendAudioEntity.cpp index 20e45062a..8448c492d 100644 --- a/plugin_sa/game_sa/CAEFrontendAudioEntity.cpp +++ b/plugin_sa/game_sa/CAEFrontendAudioEntity.cpp @@ -4,5 +4,4 @@ https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! */ - #include "CAEFrontendAudioEntity.h" diff --git a/plugin_sa/game_sa/CAEFrontendAudioEntity.h b/plugin_sa/game_sa/CAEFrontendAudioEntity.h index 503a175f8..8ac0032bc 100644 --- a/plugin_sa/game_sa/CAEFrontendAudioEntity.h +++ b/plugin_sa/game_sa/CAEFrontendAudioEntity.h @@ -4,7 +4,6 @@ https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! */ - #pragma once #include "PluginBase.h" #include "CAEAudioEntity.h" diff --git a/plugin_sa/game_sa/CAEPedAudioEntity.h b/plugin_sa/game_sa/CAEPedAudioEntity.h index eb00d35d5..3cf3cbf29 100644 --- a/plugin_sa/game_sa/CAEPedAudioEntity.h +++ b/plugin_sa/game_sa/CAEPedAudioEntity.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CAEAudioEntity.h" #include "CAESound.h" diff --git a/plugin_sa/game_sa/CAEPedlessSpeechAudioEntity.h b/plugin_sa/game_sa/CAEPedlessSpeechAudioEntity.h index 9a21b283c..11cdd378d 100644 --- a/plugin_sa/game_sa/CAEPedlessSpeechAudioEntity.h +++ b/plugin_sa/game_sa/CAEPedlessSpeechAudioEntity.h @@ -4,7 +4,6 @@ https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! */ - #pragma once #include "PluginBase.h" #include "CAEPedSpeechAudioEntity.h" diff --git a/plugin_sa/game_sa/CAEPoliceScannerAudioEntity.h b/plugin_sa/game_sa/CAEPoliceScannerAudioEntity.h index b66b09015..b83d10f0d 100644 --- a/plugin_sa/game_sa/CAEPoliceScannerAudioEntity.h +++ b/plugin_sa/game_sa/CAEPoliceScannerAudioEntity.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CAEAudioEntity.h" diff --git a/plugin_sa/game_sa/CAEScriptAudioEntity.cpp b/plugin_sa/game_sa/CAEScriptAudioEntity.cpp index 99054b523..52ff40b86 100644 --- a/plugin_sa/game_sa/CAEScriptAudioEntity.cpp +++ b/plugin_sa/game_sa/CAEScriptAudioEntity.cpp @@ -4,5 +4,4 @@ https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! */ - #include "CAEScriptAudioEntity.h" diff --git a/plugin_sa/game_sa/CAEScriptAudioEntity.h b/plugin_sa/game_sa/CAEScriptAudioEntity.h index 543ebf18e..50e16089c 100644 --- a/plugin_sa/game_sa/CAEScriptAudioEntity.h +++ b/plugin_sa/game_sa/CAEScriptAudioEntity.h @@ -4,7 +4,6 @@ https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! */ - #pragma once #include "PluginBase.h" #include "CAEAudioEntity.h" diff --git a/plugin_sa/game_sa/CAESound.h b/plugin_sa/game_sa/CAESound.h index 567e031af..833b1fe5c 100644 --- a/plugin_sa/game_sa/CAESound.h +++ b/plugin_sa/game_sa/CAESound.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" diff --git a/plugin_sa/game_sa/CAETwinLoopSoundEntity.cpp b/plugin_sa/game_sa/CAETwinLoopSoundEntity.cpp index 3d7eef4a7..00b6ad6b3 100644 --- a/plugin_sa/game_sa/CAETwinLoopSoundEntity.cpp +++ b/plugin_sa/game_sa/CAETwinLoopSoundEntity.cpp @@ -4,5 +4,4 @@ https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! */ - #include "CAETwinLoopSoundEntity.h" diff --git a/plugin_sa/game_sa/CAEVehicleAudioEntity.h b/plugin_sa/game_sa/CAEVehicleAudioEntity.h index 6a35ef061..2b49e06ed 100644 --- a/plugin_sa/game_sa/CAEVehicleAudioEntity.h +++ b/plugin_sa/game_sa/CAEVehicleAudioEntity.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CAEAudioEntity.h" #include "cTransmission.h" diff --git a/plugin_sa/game_sa/CAEWeaponAudioEntity.cpp b/plugin_sa/game_sa/CAEWeaponAudioEntity.cpp index 877d5a334..5ba6faf1a 100644 --- a/plugin_sa/game_sa/CAEWeaponAudioEntity.cpp +++ b/plugin_sa/game_sa/CAEWeaponAudioEntity.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CAEWeaponAudioEntity.h" diff --git a/plugin_sa/game_sa/CAEWeaponAudioEntity.h b/plugin_sa/game_sa/CAEWeaponAudioEntity.h index 8df46ac2f..ea24fe143 100644 --- a/plugin_sa/game_sa/CAEWeaponAudioEntity.h +++ b/plugin_sa/game_sa/CAEWeaponAudioEntity.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CAEAudioEntity.h" #include "CAESound.h" diff --git a/plugin_sa/game_sa/CAnimBlendAssocGroup.cpp b/plugin_sa/game_sa/CAnimBlendAssocGroup.cpp index 3338c4919..7ff3573cf 100644 --- a/plugin_sa/game_sa/CAnimBlendAssocGroup.cpp +++ b/plugin_sa/game_sa/CAnimBlendAssocGroup.cpp @@ -1,10 +1,9 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ - #include "CAnimBlendAssocGroup.h" // Converted from thiscall void CAnimBlendAssocGroup::CAnimBlendAssocGroup(void) 0x4CDE70 CAnimBlendAssocGroup::CAnimBlendAssocGroup() { diff --git a/plugin_sa/game_sa/CAnimBlendAssociation.h b/plugin_sa/game_sa/CAnimBlendAssociation.h index 4e39f6dcb..df7881af3 100644 --- a/plugin_sa/game_sa/CAnimBlendAssociation.h +++ b/plugin_sa/game_sa/CAnimBlendAssociation.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "AnimAssociationData.h" #include "eAnimBlendCallbackType.h" diff --git a/plugin_sa/game_sa/CAnimBlendClumpData.h b/plugin_sa/game_sa/CAnimBlendClumpData.h index efc862cd3..99fd51d27 100644 --- a/plugin_sa/game_sa/CAnimBlendClumpData.h +++ b/plugin_sa/game_sa/CAnimBlendClumpData.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "RenderWare.h" #include "CVector.h" diff --git a/plugin_sa/game_sa/CAnimBlendHierarchy.cpp b/plugin_sa/game_sa/CAnimBlendHierarchy.cpp index d5d8892da..8941f7c97 100644 --- a/plugin_sa/game_sa/CAnimBlendHierarchy.cpp +++ b/plugin_sa/game_sa/CAnimBlendHierarchy.cpp @@ -1,10 +1,9 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ - #include "CAnimBlendHierarchy.h" // Converted from thiscall void* CAnimBlendHierarchy::AllocSequenceBlock(bool arg1) 0x4CF510 diff --git a/plugin_sa/game_sa/CAnimBlendHierarchy.h b/plugin_sa/game_sa/CAnimBlendHierarchy.h index 844d351a0..f9916947e 100644 --- a/plugin_sa/game_sa/CAnimBlendHierarchy.h +++ b/plugin_sa/game_sa/CAnimBlendHierarchy.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CAnimBlendSequence.h" diff --git a/plugin_sa/game_sa/CAnimBlendNode.cpp b/plugin_sa/game_sa/CAnimBlendNode.cpp index eb3c10b7d..c6002c05d 100644 --- a/plugin_sa/game_sa/CAnimBlendNode.cpp +++ b/plugin_sa/game_sa/CAnimBlendNode.cpp @@ -4,7 +4,6 @@ https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! */ - #include "CAnimBlendNode.h" // Converted from thiscall void CAnimBlendNode::CalcDeltas(void) 0x4D0190 diff --git a/plugin_sa/game_sa/CAnimBlendNode.h b/plugin_sa/game_sa/CAnimBlendNode.h index 8acc46406..5573dcd81 100644 --- a/plugin_sa/game_sa/CAnimBlendNode.h +++ b/plugin_sa/game_sa/CAnimBlendNode.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CQuaternion.h" diff --git a/plugin_sa/game_sa/CAnimBlendSequence.cpp b/plugin_sa/game_sa/CAnimBlendSequence.cpp index efb21190a..6a2ff65c3 100644 --- a/plugin_sa/game_sa/CAnimBlendSequence.cpp +++ b/plugin_sa/game_sa/CAnimBlendSequence.cpp @@ -1,10 +1,9 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ - #include "CAnimBlendSequence.h" // Converted from thiscall void CAnimBlendSequence::CAnimBlendSequence(void) 0x4D0C10 diff --git a/plugin_sa/game_sa/CAnimBlendSequence.h b/plugin_sa/game_sa/CAnimBlendSequence.h index 5c1ea0e68..d50362cce 100644 --- a/plugin_sa/game_sa/CAnimBlendSequence.h +++ b/plugin_sa/game_sa/CAnimBlendSequence.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" class PLUGIN_API CAnimBlendSequence { diff --git a/plugin_sa/game_sa/CAnimBlendStaticAssociation.h b/plugin_sa/game_sa/CAnimBlendStaticAssociation.h index 9cac04281..332d248f2 100644 --- a/plugin_sa/game_sa/CAnimBlendStaticAssociation.h +++ b/plugin_sa/game_sa/CAnimBlendStaticAssociation.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "RenderWare.h" diff --git a/plugin_sa/game_sa/CAnimBlock.h b/plugin_sa/game_sa/CAnimBlock.h index f6c9e2f43..2f5721daf 100644 --- a/plugin_sa/game_sa/CAnimBlock.h +++ b/plugin_sa/game_sa/CAnimBlock.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" class PLUGIN_API CAnimBlock { diff --git a/plugin_sa/game_sa/CAnimManager.cpp b/plugin_sa/game_sa/CAnimManager.cpp index 44f9e1a27..0039f99f2 100644 --- a/plugin_sa/game_sa/CAnimManager.cpp +++ b/plugin_sa/game_sa/CAnimManager.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CAnimManager.h" diff --git a/plugin_sa/game_sa/CAnimManager.h b/plugin_sa/game_sa/CAnimManager.h index 4423792bb..28940916c 100644 --- a/plugin_sa/game_sa/CAnimManager.h +++ b/plugin_sa/game_sa/CAnimManager.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CAnimationStyleDescriptor.h" #include "CAnimBlendAssocGroup.h" diff --git a/plugin_sa/game_sa/CAnimationStyleDescriptor.h b/plugin_sa/game_sa/CAnimationStyleDescriptor.h index 2ce14bc51..b7fcf6292 100644 --- a/plugin_sa/game_sa/CAnimationStyleDescriptor.h +++ b/plugin_sa/game_sa/CAnimationStyleDescriptor.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" class PLUGIN_API CAnimationStyleDescriptor { diff --git a/plugin_sa/game_sa/CAttractorScanner.h b/plugin_sa/game_sa/CAttractorScanner.h index d58f334e0..f98585657 100644 --- a/plugin_sa/game_sa/CAttractorScanner.h +++ b/plugin_sa/game_sa/CAttractorScanner.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskTimer.h" #include "C2dEffect.h" diff --git a/plugin_sa/game_sa/CAudioEngine.cpp b/plugin_sa/game_sa/CAudioEngine.cpp index 733da50dd..2aa71dc85 100644 --- a/plugin_sa/game_sa/CAudioEngine.cpp +++ b/plugin_sa/game_sa/CAudioEngine.cpp @@ -4,7 +4,6 @@ https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! */ - #include "CAudioEngine.h" CAudioEngine& AudioEngine = *(CAudioEngine*)0xB6BC90; diff --git a/plugin_sa/game_sa/CAudioEngine.h b/plugin_sa/game_sa/CAudioEngine.h index 212361903..3cab8c469 100644 --- a/plugin_sa/game_sa/CAudioEngine.h +++ b/plugin_sa/game_sa/CAudioEngine.h @@ -4,7 +4,6 @@ https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! */ - #pragma once #include "PluginBase.h" #include "CAEFrontendAudioEntity.h" diff --git a/plugin_sa/game_sa/CAudioLink.cpp b/plugin_sa/game_sa/CAudioLink.cpp index c82943537..c16e6ba73 100644 --- a/plugin_sa/game_sa/CAudioLink.cpp +++ b/plugin_sa/game_sa/CAudioLink.cpp @@ -4,5 +4,4 @@ https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! */ - #include "CAudioLink.h" diff --git a/plugin_sa/game_sa/CAudioLink.h b/plugin_sa/game_sa/CAudioLink.h index 43841ca39..7e07d07e2 100644 --- a/plugin_sa/game_sa/CAudioLink.h +++ b/plugin_sa/game_sa/CAudioLink.h @@ -4,7 +4,6 @@ https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! */ - #pragma once #include "PluginBase.h" #include "CVector.h" diff --git a/plugin_sa/game_sa/CAutoPilot.h b/plugin_sa/game_sa/CAutoPilot.h index 33d56eddf..b4e84eb20 100644 --- a/plugin_sa/game_sa/CAutoPilot.h +++ b/plugin_sa/game_sa/CAutoPilot.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" #include "CPathFind.h" diff --git a/plugin_sa/game_sa/CBirds.h b/plugin_sa/game_sa/CBirds.h index e04b7e06c..ce5a5fae2 100644 --- a/plugin_sa/game_sa/CBirds.h +++ b/plugin_sa/game_sa/CBirds.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" diff --git a/plugin_sa/game_sa/CBouncingPanel.h b/plugin_sa/game_sa/CBouncingPanel.h index ab9fed9f1..c155dfdd4 100644 --- a/plugin_sa/game_sa/CBouncingPanel.h +++ b/plugin_sa/game_sa/CBouncingPanel.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" diff --git a/plugin_sa/game_sa/CBoundingBox.h b/plugin_sa/game_sa/CBoundingBox.h index ca38dfad0..38af640e1 100644 --- a/plugin_sa/game_sa/CBoundingBox.h +++ b/plugin_sa/game_sa/CBoundingBox.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CBox.h" diff --git a/plugin_sa/game_sa/CBox.h b/plugin_sa/game_sa/CBox.h index d6bb8616c..87e09ce28 100644 --- a/plugin_sa/game_sa/CBox.h +++ b/plugin_sa/game_sa/CBox.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" diff --git a/plugin_sa/game_sa/CBulletInfo.h b/plugin_sa/game_sa/CBulletInfo.h index 501dbf99f..b1f884e5d 100644 --- a/plugin_sa/game_sa/CBulletInfo.h +++ b/plugin_sa/game_sa/CBulletInfo.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" #include "eWeaponType.h" diff --git a/plugin_sa/game_sa/CCam.h b/plugin_sa/game_sa/CCam.h index dc0e9516b..eb88c4528 100644 --- a/plugin_sa/game_sa/CCam.h +++ b/plugin_sa/game_sa/CCam.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "eCamMode.h" #include "CVector.h" diff --git a/plugin_sa/game_sa/CCamPathSplines.h b/plugin_sa/game_sa/CCamPathSplines.h index c24a00702..c9b3849e1 100644 --- a/plugin_sa/game_sa/CCamPathSplines.h +++ b/plugin_sa/game_sa/CCamPathSplines.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" diff --git a/plugin_sa/game_sa/CCamera.cpp b/plugin_sa/game_sa/CCamera.cpp index eddae10a6..ac3c8facd 100644 --- a/plugin_sa/game_sa/CCamera.cpp +++ b/plugin_sa/game_sa/CCamera.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CCamera.h" diff --git a/plugin_sa/game_sa/CCamera.h b/plugin_sa/game_sa/CCamera.h index c2211bc37..2b02d0219 100644 --- a/plugin_sa/game_sa/CCamera.h +++ b/plugin_sa/game_sa/CCamera.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CPlaceable.h" #include "CCam.h" diff --git a/plugin_sa/game_sa/CCarAI.cpp b/plugin_sa/game_sa/CCarAI.cpp index ad0b9f194..96a7e79ab 100644 --- a/plugin_sa/game_sa/CCarAI.cpp +++ b/plugin_sa/game_sa/CCarAI.cpp @@ -1,10 +1,9 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ - #include "CCarAI.h" // Converted from cdecl void CCarAI::BackToCruisingIfNoWantedLevel(CVehicle *pVehicle) 0x41BFA0 diff --git a/plugin_sa/game_sa/CCarAI.h b/plugin_sa/game_sa/CCarAI.h index fe96922b8..3ff4c06d4 100644 --- a/plugin_sa/game_sa/CCarAI.h +++ b/plugin_sa/game_sa/CCarAI.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once #include "PluginBase.h" diff --git a/plugin_sa/game_sa/CCarEnterExit.h b/plugin_sa/game_sa/CCarEnterExit.h index b7adefa12..a8dc5f1ae 100644 --- a/plugin_sa/game_sa/CCarEnterExit.h +++ b/plugin_sa/game_sa/CCarEnterExit.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVehicle.h" #include "CVector.h" diff --git a/plugin_sa/game_sa/CCarGenerator.cpp b/plugin_sa/game_sa/CCarGenerator.cpp index 07adcc7af..df859e8f0 100644 --- a/plugin_sa/game_sa/CCarGenerator.cpp +++ b/plugin_sa/game_sa/CCarGenerator.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CCarGenerator.h" diff --git a/plugin_sa/game_sa/CCarGenerator.h b/plugin_sa/game_sa/CCarGenerator.h index 0708f0b41..22ca23668 100644 --- a/plugin_sa/game_sa/CCarGenerator.h +++ b/plugin_sa/game_sa/CCarGenerator.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CompressedVector.h" diff --git a/plugin_sa/game_sa/CCarPathLink.h b/plugin_sa/game_sa/CCarPathLink.h index b6579d9a6..fdd1aec80 100644 --- a/plugin_sa/game_sa/CCarPathLink.h +++ b/plugin_sa/game_sa/CCarPathLink.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CompressedVector2D.h" #include "CNodeAddress.h" diff --git a/plugin_sa/game_sa/CCarPathLinkAddress.h b/plugin_sa/game_sa/CCarPathLinkAddress.h index 733d1c31b..a5ea7b20b 100644 --- a/plugin_sa/game_sa/CCarPathLinkAddress.h +++ b/plugin_sa/game_sa/CCarPathLinkAddress.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" class PLUGIN_API CCarPathLinkAddress { diff --git a/plugin_sa/game_sa/CCheat.h b/plugin_sa/game_sa/CCheat.h index 42bab8fdf..7924a1f61 100644 --- a/plugin_sa/game_sa/CCheat.h +++ b/plugin_sa/game_sa/CCheat.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVehicle.h" diff --git a/plugin_sa/game_sa/CCivilianPed.h b/plugin_sa/game_sa/CCivilianPed.h index d261202c3..3a51e5208 100644 --- a/plugin_sa/game_sa/CCivilianPed.h +++ b/plugin_sa/game_sa/CCivilianPed.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CPed.h" diff --git a/plugin_sa/game_sa/CClock.h b/plugin_sa/game_sa/CClock.h index 42855e1c0..f76f06475 100644 --- a/plugin_sa/game_sa/CClock.h +++ b/plugin_sa/game_sa/CClock.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" class PLUGIN_API CClock { diff --git a/plugin_sa/game_sa/CClothes.cpp b/plugin_sa/game_sa/CClothes.cpp index 657c099c0..a2c4af47c 100644 --- a/plugin_sa/game_sa/CClothes.cpp +++ b/plugin_sa/game_sa/CClothes.cpp @@ -4,7 +4,6 @@ https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! */ - #include "CClothes.h" // Converted from cdecl void CClothes::ConstructPedModel(uint modelid,CPedClothesDesc &newclothes,CPedClothesDesc const*oldclothes,bool bCutscenePlayer) 0x5A81E0 diff --git a/plugin_sa/game_sa/CClothesBuilder.cpp b/plugin_sa/game_sa/CClothesBuilder.cpp index 068f680ac..8187cf33f 100644 --- a/plugin_sa/game_sa/CClothesBuilder.cpp +++ b/plugin_sa/game_sa/CClothesBuilder.cpp @@ -4,7 +4,6 @@ https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! */ - #include "CClothesBuilder.h" // Converted from cdecl void CClothesBuilder::BlendTextures(RwTexture *texture,RwTexture *texture,RwTexture *texture,float factorA,float factorB,float factorC,int arg7,RwTexture *texture) 0x5A5BC0 diff --git a/plugin_sa/game_sa/CClouds.h b/plugin_sa/game_sa/CClouds.h index 66c8b6aa8..48ef9af78 100644 --- a/plugin_sa/game_sa/CClouds.h +++ b/plugin_sa/game_sa/CClouds.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" diff --git a/plugin_sa/game_sa/CColBox.h b/plugin_sa/game_sa/CColBox.h index e529f9df2..7ebbfc1f9 100644 --- a/plugin_sa/game_sa/CColBox.h +++ b/plugin_sa/game_sa/CColBox.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CBox.h" diff --git a/plugin_sa/game_sa/CColLine.h b/plugin_sa/game_sa/CColLine.h index ca7c1520a..179b08b0e 100644 --- a/plugin_sa/game_sa/CColLine.h +++ b/plugin_sa/game_sa/CColLine.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" diff --git a/plugin_sa/game_sa/CColModel.h b/plugin_sa/game_sa/CColModel.h index 19ed70ea1..b1453fb47 100644 --- a/plugin_sa/game_sa/CColModel.h +++ b/plugin_sa/game_sa/CColModel.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CBoundingBox.h" #include "CColSphere.h" diff --git a/plugin_sa/game_sa/CColPoint.h b/plugin_sa/game_sa/CColPoint.h index a9ad130a3..ebc932965 100644 --- a/plugin_sa/game_sa/CColPoint.h +++ b/plugin_sa/game_sa/CColPoint.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" diff --git a/plugin_sa/game_sa/CColSphere.h b/plugin_sa/game_sa/CColSphere.h index 82d85d048..de4c0d890 100644 --- a/plugin_sa/game_sa/CColSphere.h +++ b/plugin_sa/game_sa/CColSphere.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CSphere.h" diff --git a/plugin_sa/game_sa/CColTriangle.h b/plugin_sa/game_sa/CColTriangle.h index 7784c9cd0..335d7138a 100644 --- a/plugin_sa/game_sa/CColTriangle.h +++ b/plugin_sa/game_sa/CColTriangle.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" class CColTriangle { diff --git a/plugin_sa/game_sa/CColTrianglePlane.h b/plugin_sa/game_sa/CColTrianglePlane.h index 0ff0c82b9..e3624fa0b 100644 --- a/plugin_sa/game_sa/CColTrianglePlane.h +++ b/plugin_sa/game_sa/CColTrianglePlane.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CompressedVector.h" #include "CVector.h" diff --git a/plugin_sa/game_sa/CCollision.h b/plugin_sa/game_sa/CCollision.h index c1aa12eea..86ed60994 100644 --- a/plugin_sa/game_sa/CCollision.h +++ b/plugin_sa/game_sa/CCollision.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CColModel.h" #include "CColPoint.h" diff --git a/plugin_sa/game_sa/CCollisionData.h b/plugin_sa/game_sa/CCollisionData.h index 48cc6b1a6..fd33d226c 100644 --- a/plugin_sa/game_sa/CCollisionData.h +++ b/plugin_sa/game_sa/CCollisionData.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CColSphere.h" #include "CColBox.h" diff --git a/plugin_sa/game_sa/CCollisionEventScanner.h b/plugin_sa/game_sa/CCollisionEventScanner.h index c113cd955..72ace28f3 100644 --- a/plugin_sa/game_sa/CCollisionEventScanner.h +++ b/plugin_sa/game_sa/CCollisionEventScanner.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" class CPed; diff --git a/plugin_sa/game_sa/CColourSet.h b/plugin_sa/game_sa/CColourSet.h index f4eaad1df..af57e11af 100644 --- a/plugin_sa/game_sa/CColourSet.h +++ b/plugin_sa/game_sa/CColourSet.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" class PLUGIN_API CColourSet { diff --git a/plugin_sa/game_sa/CCopPed.h b/plugin_sa/game_sa/CCopPed.h index 85491c5d2..06a33e5c0 100644 --- a/plugin_sa/game_sa/CCopPed.h +++ b/plugin_sa/game_sa/CCopPed.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CPed.h" #include "eCopType.h" diff --git a/plugin_sa/game_sa/CCoronas.h b/plugin_sa/game_sa/CCoronas.h index 568f26235..e942ceef5 100644 --- a/plugin_sa/game_sa/CCoronas.h +++ b/plugin_sa/game_sa/CCoronas.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CRegisteredCorona.h" diff --git a/plugin_sa/game_sa/CCover.h b/plugin_sa/game_sa/CCover.h index c2a5dd65a..744a70aa4 100644 --- a/plugin_sa/game_sa/CCover.h +++ b/plugin_sa/game_sa/CCover.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CEntity.h" #include "CVector.h" diff --git a/plugin_sa/game_sa/CCoverPoint.h b/plugin_sa/game_sa/CCoverPoint.h index a7d3911e3..abddd46e4 100644 --- a/plugin_sa/game_sa/CCoverPoint.h +++ b/plugin_sa/game_sa/CCoverPoint.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" diff --git a/plugin_sa/game_sa/CCredits.h b/plugin_sa/game_sa/CCredits.h index e56f3f632..58229bcd6 100644 --- a/plugin_sa/game_sa/CCredits.h +++ b/plugin_sa/game_sa/CCredits.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" class PLUGIN_API CCredits { diff --git a/plugin_sa/game_sa/CCreepingFire.h b/plugin_sa/game_sa/CCreepingFire.h index 72af25484..0e78606b4 100644 --- a/plugin_sa/game_sa/CCreepingFire.h +++ b/plugin_sa/game_sa/CCreepingFire.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" diff --git a/plugin_sa/game_sa/CCrimeBeingQd.h b/plugin_sa/game_sa/CCrimeBeingQd.h index 4811d1bb8..26e23ca21 100644 --- a/plugin_sa/game_sa/CCrimeBeingQd.h +++ b/plugin_sa/game_sa/CCrimeBeingQd.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "eCrimeType.h" #include "CVector.h" diff --git a/plugin_sa/game_sa/CCustomCarEnvMapPipeline.cpp b/plugin_sa/game_sa/CCustomCarEnvMapPipeline.cpp index c99710302..e08443679 100644 --- a/plugin_sa/game_sa/CCustomCarEnvMapPipeline.cpp +++ b/plugin_sa/game_sa/CCustomCarEnvMapPipeline.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CCustomCarEnvMapPipeline.h" diff --git a/plugin_sa/game_sa/CCustomCarEnvMapPipeline.h b/plugin_sa/game_sa/CCustomCarEnvMapPipeline.h index 9e88f5638..7d634e1a7 100644 --- a/plugin_sa/game_sa/CCustomCarEnvMapPipeline.h +++ b/plugin_sa/game_sa/CCustomCarEnvMapPipeline.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "RenderWare.h" #include "CPool.h" diff --git a/plugin_sa/game_sa/CCustomCarPlateMgr.h b/plugin_sa/game_sa/CCustomCarPlateMgr.h index 0c1c7416a..a1f8de231 100644 --- a/plugin_sa/game_sa/CCustomCarPlateMgr.h +++ b/plugin_sa/game_sa/CCustomCarPlateMgr.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "RenderWare.h" diff --git a/plugin_sa/game_sa/CCutsceneObject.h b/plugin_sa/game_sa/CCutsceneObject.h index 3b01adf27..df15bce3a 100644 --- a/plugin_sa/game_sa/CCutsceneObject.h +++ b/plugin_sa/game_sa/CCutsceneObject.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CObject.h" diff --git a/plugin_sa/game_sa/CDarkel.h b/plugin_sa/game_sa/CDarkel.h index 2cc10ee81..2975063cf 100644 --- a/plugin_sa/game_sa/CDarkel.h +++ b/plugin_sa/game_sa/CDarkel.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVehicle.h" diff --git a/plugin_sa/game_sa/CDate.h b/plugin_sa/game_sa/CDate.h index a91abe41e..c5d8e5136 100644 --- a/plugin_sa/game_sa/CDate.h +++ b/plugin_sa/game_sa/CDate.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" class PLUGIN_API CDate { diff --git a/plugin_sa/game_sa/CDoor.h b/plugin_sa/game_sa/CDoor.h index fa67c30a9..b57a5205b 100644 --- a/plugin_sa/game_sa/CDoor.h +++ b/plugin_sa/game_sa/CDoor.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" diff --git a/plugin_sa/game_sa/CEmergencyPed.h b/plugin_sa/game_sa/CEmergencyPed.h index 3b41306d0..f780ed0d8 100644 --- a/plugin_sa/game_sa/CEmergencyPed.h +++ b/plugin_sa/game_sa/CEmergencyPed.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CPed.h" diff --git a/plugin_sa/game_sa/CEntityScanner.h b/plugin_sa/game_sa/CEntityScanner.h index b44749e81..89f521e52 100644 --- a/plugin_sa/game_sa/CEntityScanner.h +++ b/plugin_sa/game_sa/CEntityScanner.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" class PLUGIN_API CEntityScanner { diff --git a/plugin_sa/game_sa/CEntryExit.h b/plugin_sa/game_sa/CEntryExit.h index 356f01bfd..bc993993a 100644 --- a/plugin_sa/game_sa/CEntryExit.h +++ b/plugin_sa/game_sa/CEntryExit.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CRect.h" #include "CVector.h" diff --git a/plugin_sa/game_sa/CEntryExitManager.h b/plugin_sa/game_sa/CEntryExitManager.h index 7946a9cfc..db49edd91 100644 --- a/plugin_sa/game_sa/CEntryExitManager.h +++ b/plugin_sa/game_sa/CEntryExitManager.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CEntryExit.h" #include "CVector.h" diff --git a/plugin_sa/game_sa/CEventGroup.h b/plugin_sa/game_sa/CEventGroup.h index 56d32df0b..66d044851 100644 --- a/plugin_sa/game_sa/CEventGroup.h +++ b/plugin_sa/game_sa/CEventGroup.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" class PLUGIN_API CEventGroup { diff --git a/plugin_sa/game_sa/CEventHandler.h b/plugin_sa/game_sa/CEventHandler.h index 2e800ced2..6fc4cd2d5 100644 --- a/plugin_sa/game_sa/CEventHandler.h +++ b/plugin_sa/game_sa/CEventHandler.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" class PLUGIN_API CEventHandler { diff --git a/plugin_sa/game_sa/CEventScanner.h b/plugin_sa/game_sa/CEventScanner.h index 9d98c585b..d629e69c6 100644 --- a/plugin_sa/game_sa/CEventScanner.h +++ b/plugin_sa/game_sa/CEventScanner.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskTimer.h" #include "CAttractorScanner.h" diff --git a/plugin_sa/game_sa/CExplosion.h b/plugin_sa/game_sa/CExplosion.h index 21066fc6c..369bc5a84 100644 --- a/plugin_sa/game_sa/CExplosion.h +++ b/plugin_sa/game_sa/CExplosion.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" #include "CAEExplosionAudioEntity.h" diff --git a/plugin_sa/game_sa/CFileCarGenerator.h b/plugin_sa/game_sa/CFileCarGenerator.h index 54bb75642..5638b62bf 100644 --- a/plugin_sa/game_sa/CFileCarGenerator.h +++ b/plugin_sa/game_sa/CFileCarGenerator.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" diff --git a/plugin_sa/game_sa/CFileLoader.h b/plugin_sa/game_sa/CFileLoader.h index 5ec8058cd..e7ef427a8 100644 --- a/plugin_sa/game_sa/CFileLoader.h +++ b/plugin_sa/game_sa/CFileLoader.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "RenderWare.h" #include "CBoundingBox.h" diff --git a/plugin_sa/game_sa/CFileObjectInstance.h b/plugin_sa/game_sa/CFileObjectInstance.h index eed732bc2..e27c941be 100644 --- a/plugin_sa/game_sa/CFileObjectInstance.h +++ b/plugin_sa/game_sa/CFileObjectInstance.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" #include "CQuaternion.h" diff --git a/plugin_sa/game_sa/CFire.h b/plugin_sa/game_sa/CFire.h index 9f947417f..11b2a6e71 100644 --- a/plugin_sa/game_sa/CFire.h +++ b/plugin_sa/game_sa/CFire.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CEntity.h" #include "FxSystem_c.h" diff --git a/plugin_sa/game_sa/CFireManager.h b/plugin_sa/game_sa/CFireManager.h index 454eb8f62..8c31ca5f3 100644 --- a/plugin_sa/game_sa/CFireManager.h +++ b/plugin_sa/game_sa/CFireManager.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CFire.h" diff --git a/plugin_sa/game_sa/CFont.h b/plugin_sa/game_sa/CFont.h index d3ec3750f..d22957f58 100644 --- a/plugin_sa/game_sa/CFont.h +++ b/plugin_sa/game_sa/CFont.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CRGBA.h" #include "CRect.h" diff --git a/plugin_sa/game_sa/CForbiddenArea.h b/plugin_sa/game_sa/CForbiddenArea.h index 7663af457..70f0e727d 100644 --- a/plugin_sa/game_sa/CForbiddenArea.h +++ b/plugin_sa/game_sa/CForbiddenArea.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" class PLUGIN_API CForbiddenArea { diff --git a/plugin_sa/game_sa/CFormation.h b/plugin_sa/game_sa/CFormation.h index 2aceab568..17301e289 100644 --- a/plugin_sa/game_sa/CFormation.h +++ b/plugin_sa/game_sa/CFormation.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CPed.h" #include "CVector.h" diff --git a/plugin_sa/game_sa/CGame.h b/plugin_sa/game_sa/CGame.h index 97334273e..960fda2e8 100644 --- a/plugin_sa/game_sa/CGame.h +++ b/plugin_sa/game_sa/CGame.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "RenderWare.h" #include "CColModel.h" diff --git a/plugin_sa/game_sa/CGamma.h b/plugin_sa/game_sa/CGamma.h index c6e812d99..6df5e7d3a 100644 --- a/plugin_sa/game_sa/CGamma.h +++ b/plugin_sa/game_sa/CGamma.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" class PLUGIN_API CGamma diff --git a/plugin_sa/game_sa/CGangInfo.h b/plugin_sa/game_sa/CGangInfo.h index b3d27d126..dc024c16a 100644 --- a/plugin_sa/game_sa/CGangInfo.h +++ b/plugin_sa/game_sa/CGangInfo.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" class PLUGIN_API CGangInfo { diff --git a/plugin_sa/game_sa/CGangWars.h b/plugin_sa/game_sa/CGangWars.h index d3ae2fe1f..e2021c18a 100644 --- a/plugin_sa/game_sa/CGangWars.h +++ b/plugin_sa/game_sa/CGangWars.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CZoneInfo.h" #include "CZone.h" diff --git a/plugin_sa/game_sa/CGangWarsSaveStructure.h b/plugin_sa/game_sa/CGangWarsSaveStructure.h index 147773a3d..bfbceffed 100644 --- a/plugin_sa/game_sa/CGangWarsSaveStructure.h +++ b/plugin_sa/game_sa/CGangWarsSaveStructure.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" diff --git a/plugin_sa/game_sa/CGangs.h b/plugin_sa/game_sa/CGangs.h index 3ca1f580a..402ff6f06 100644 --- a/plugin_sa/game_sa/CGangs.h +++ b/plugin_sa/game_sa/CGangs.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "ePedType.h" #include "CGangInfo.h" diff --git a/plugin_sa/game_sa/CGeneral.h b/plugin_sa/game_sa/CGeneral.h index e9fa79e58..7072ee589 100644 --- a/plugin_sa/game_sa/CGeneral.h +++ b/plugin_sa/game_sa/CGeneral.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CCamera.h" diff --git a/plugin_sa/game_sa/CGenericGameStorage.h b/plugin_sa/game_sa/CGenericGameStorage.h index 18b537dab..80365baa8 100644 --- a/plugin_sa/game_sa/CGenericGameStorage.h +++ b/plugin_sa/game_sa/CGenericGameStorage.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" enum PLUGIN_API eSaveLoadBlocks { diff --git a/plugin_sa/game_sa/CGridRef.h b/plugin_sa/game_sa/CGridRef.h index 94a722fbe..8859c6972 100644 --- a/plugin_sa/game_sa/CGridRef.h +++ b/plugin_sa/game_sa/CGridRef.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" diff --git a/plugin_sa/game_sa/CHandObject.h b/plugin_sa/game_sa/CHandObject.h index 3d7627631..51852390c 100644 --- a/plugin_sa/game_sa/CHandObject.h +++ b/plugin_sa/game_sa/CHandObject.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CObject.h" diff --git a/plugin_sa/game_sa/CHeli.h b/plugin_sa/game_sa/CHeli.h index dd17ef13e..26b39b6f5 100644 --- a/plugin_sa/game_sa/CHeli.h +++ b/plugin_sa/game_sa/CHeli.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CAutomobile.h" diff --git a/plugin_sa/game_sa/CHud.h b/plugin_sa/game_sa/CHud.h index beedef97f..1fa4b8fde 100644 --- a/plugin_sa/game_sa/CHud.h +++ b/plugin_sa/game_sa/CHud.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CSprite2d.h" diff --git a/plugin_sa/game_sa/CIniFile.h b/plugin_sa/game_sa/CIniFile.h index a38979665..92367bdfd 100644 --- a/plugin_sa/game_sa/CIniFile.h +++ b/plugin_sa/game_sa/CIniFile.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" class PLUGIN_API CIniFile { diff --git a/plugin_sa/game_sa/CIplStore.h b/plugin_sa/game_sa/CIplStore.h index 34fc84a70..3b66f61bf 100644 --- a/plugin_sa/game_sa/CIplStore.h +++ b/plugin_sa/game_sa/CIplStore.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "IplDef.h" #include "CEntity.h" diff --git a/plugin_sa/game_sa/CKeyGen.h b/plugin_sa/game_sa/CKeyGen.h index a916ec30e..0f3b51926 100644 --- a/plugin_sa/game_sa/CKeyGen.h +++ b/plugin_sa/game_sa/CKeyGen.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" class CKeyGen { diff --git a/plugin_sa/game_sa/CLink.h b/plugin_sa/game_sa/CLink.h index a2e6bfe77..3bed09e98 100644 --- a/plugin_sa/game_sa/CLink.h +++ b/plugin_sa/game_sa/CLink.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" template diff --git a/plugin_sa/game_sa/CLinkList.h b/plugin_sa/game_sa/CLinkList.h index fb5e47f99..a3bf60402 100644 --- a/plugin_sa/game_sa/CLinkList.h +++ b/plugin_sa/game_sa/CLinkList.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CLink.h" diff --git a/plugin_sa/game_sa/CLoadingScreen.cpp b/plugin_sa/game_sa/CLoadingScreen.cpp index 4bbfff3ab..923dd2822 100644 --- a/plugin_sa/game_sa/CLoadingScreen.cpp +++ b/plugin_sa/game_sa/CLoadingScreen.cpp @@ -4,7 +4,6 @@ https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! */ - #include "CLoadingScreen.h" int &CLoadingScreen::m_currDisplayedSplash = *(int*)0x8D093C; diff --git a/plugin_sa/game_sa/CLocalisation.h b/plugin_sa/game_sa/CLocalisation.h index c11ef7ac8..b530adc88 100644 --- a/plugin_sa/game_sa/CLocalisation.h +++ b/plugin_sa/game_sa/CLocalisation.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" class PLUGIN_API CLocalisation { diff --git a/plugin_sa/game_sa/CMatrixLink.h b/plugin_sa/game_sa/CMatrixLink.h index 17d0a5f11..cbb40be40 100644 --- a/plugin_sa/game_sa/CMatrixLink.h +++ b/plugin_sa/game_sa/CMatrixLink.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CMatrix.h" diff --git a/plugin_sa/game_sa/CMentalState.h b/plugin_sa/game_sa/CMentalState.h index 51996a310..60c809490 100644 --- a/plugin_sa/game_sa/CMentalState.h +++ b/plugin_sa/game_sa/CMentalState.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskTimer.h" diff --git a/plugin_sa/game_sa/CMenuManager.cpp b/plugin_sa/game_sa/CMenuManager.cpp index 3e21d515a..479042963 100644 --- a/plugin_sa/game_sa/CMenuManager.cpp +++ b/plugin_sa/game_sa/CMenuManager.cpp @@ -4,7 +4,6 @@ https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! */ - #pragma warning(disable : 26495) #include "CMenuManager.h" diff --git a/plugin_sa/game_sa/CMenuManager.h b/plugin_sa/game_sa/CMenuManager.h index 49878efed..3454e7c0d 100644 --- a/plugin_sa/game_sa/CMenuManager.h +++ b/plugin_sa/game_sa/CMenuManager.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector2D.h" #include "CSprite2d.h" diff --git a/plugin_sa/game_sa/CMessages.h b/plugin_sa/game_sa/CMessages.h index c4e3a72c2..e67476e4d 100644 --- a/plugin_sa/game_sa/CMessages.h +++ b/plugin_sa/game_sa/CMessages.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" enum eMessageStyle : unsigned short diff --git a/plugin_sa/game_sa/CMonsterTruck.h b/plugin_sa/game_sa/CMonsterTruck.h index dd084ef6a..5742f45b7 100644 --- a/plugin_sa/game_sa/CMonsterTruck.h +++ b/plugin_sa/game_sa/CMonsterTruck.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CAutomobile.h" diff --git a/plugin_sa/game_sa/CNodeAddress.h b/plugin_sa/game_sa/CNodeAddress.h index cc33c8cae..99a2ec728 100644 --- a/plugin_sa/game_sa/CNodeAddress.h +++ b/plugin_sa/game_sa/CNodeAddress.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" class PLUGIN_API CNodeAddress { diff --git a/plugin_sa/game_sa/CObject.h b/plugin_sa/game_sa/CObject.h index 7a0a59253..b519b5d5a 100644 --- a/plugin_sa/game_sa/CObject.h +++ b/plugin_sa/game_sa/CObject.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CPhysical.h" #include "CObjectInfo.h" diff --git a/plugin_sa/game_sa/CObjectInfo.h b/plugin_sa/game_sa/CObjectInfo.h index c850ea507..e19ea8b70 100644 --- a/plugin_sa/game_sa/CObjectInfo.h +++ b/plugin_sa/game_sa/CObjectInfo.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" #include "FxSystem_c.h" diff --git a/plugin_sa/game_sa/COctTree.h b/plugin_sa/game_sa/COctTree.h index 37aeb460a..8f51bef69 100644 --- a/plugin_sa/game_sa/COctTree.h +++ b/plugin_sa/game_sa/COctTree.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CPool.h" diff --git a/plugin_sa/game_sa/COctTreeBase.h b/plugin_sa/game_sa/COctTreeBase.h index 1f6cc25aa..f4018c9a5 100644 --- a/plugin_sa/game_sa/COctTreeBase.h +++ b/plugin_sa/game_sa/COctTreeBase.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "COctTree.h" diff --git a/plugin_sa/game_sa/COnscreenCounterEntry.h b/plugin_sa/game_sa/COnscreenCounterEntry.h index 493768463..79d3f4180 100644 --- a/plugin_sa/game_sa/COnscreenCounterEntry.h +++ b/plugin_sa/game_sa/COnscreenCounterEntry.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" class PLUGIN_API COnscreenCounterEntry { diff --git a/plugin_sa/game_sa/COnscreenTimer.h b/plugin_sa/game_sa/COnscreenTimer.h index 35390ceb3..51e72bfa9 100644 --- a/plugin_sa/game_sa/COnscreenTimer.h +++ b/plugin_sa/game_sa/COnscreenTimer.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "COnscreenTimerEntry.h" #include "COnscreenCounterEntry.h" diff --git a/plugin_sa/game_sa/COnscreenTimerEntry.h b/plugin_sa/game_sa/COnscreenTimerEntry.h index bfa3979d0..7e873b3b1 100644 --- a/plugin_sa/game_sa/COnscreenTimerEntry.h +++ b/plugin_sa/game_sa/COnscreenTimerEntry.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" class PLUGIN_API COnscreenTimerEntry { diff --git a/plugin_sa/game_sa/CPathIntersectionInfo.h b/plugin_sa/game_sa/CPathIntersectionInfo.h index 6ae39149c..921297fe7 100644 --- a/plugin_sa/game_sa/CPathIntersectionInfo.h +++ b/plugin_sa/game_sa/CPathIntersectionInfo.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" class PLUGIN_API CPathIntersectionInfo { diff --git a/plugin_sa/game_sa/CPathNode.h b/plugin_sa/game_sa/CPathNode.h index 73b8e2a08..9d0b8e427 100644 --- a/plugin_sa/game_sa/CPathNode.h +++ b/plugin_sa/game_sa/CPathNode.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CompressedVector.h" #include "CVector.h" diff --git a/plugin_sa/game_sa/CPedAcquaintance.h b/plugin_sa/game_sa/CPedAcquaintance.h index 35a4b36f8..485f9991c 100644 --- a/plugin_sa/game_sa/CPedAcquaintance.h +++ b/plugin_sa/game_sa/CPedAcquaintance.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" class PLUGIN_API CPedAcquaintance { diff --git a/plugin_sa/game_sa/CPedClothesDesc.cpp b/plugin_sa/game_sa/CPedClothesDesc.cpp index 8f3c2d97e..89f15bc1b 100644 --- a/plugin_sa/game_sa/CPedClothesDesc.cpp +++ b/plugin_sa/game_sa/CPedClothesDesc.cpp @@ -4,7 +4,6 @@ https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! */ - #include "CPedClothesDesc.h" diff --git a/plugin_sa/game_sa/CPedClothesDesc.h b/plugin_sa/game_sa/CPedClothesDesc.h index 2e40fd46f..a4d84d404 100644 --- a/plugin_sa/game_sa/CPedClothesDesc.h +++ b/plugin_sa/game_sa/CPedClothesDesc.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "eClothesModelPart.h" #include "eClothesTexturePart.h" diff --git a/plugin_sa/game_sa/CPedDamageResponse.h b/plugin_sa/game_sa/CPedDamageResponse.h index 993101c93..1a1a3a80e 100644 --- a/plugin_sa/game_sa/CPedDamageResponse.h +++ b/plugin_sa/game_sa/CPedDamageResponse.h @@ -1,5 +1,4 @@ #pragma once - #include "PluginBase.h" class CPedDamageResponse { diff --git a/plugin_sa/game_sa/CPedDamageResponseCalculator.h b/plugin_sa/game_sa/CPedDamageResponseCalculator.h index 14a46633a..af536807c 100644 --- a/plugin_sa/game_sa/CPedDamageResponseCalculator.h +++ b/plugin_sa/game_sa/CPedDamageResponseCalculator.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CPedDamageResponse.h" #include "eWeaponType.h" diff --git a/plugin_sa/game_sa/CPedGroup.h b/plugin_sa/game_sa/CPedGroup.h index 7e5f18c8a..fcd5979e8 100644 --- a/plugin_sa/game_sa/CPedGroup.h +++ b/plugin_sa/game_sa/CPedGroup.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CPedGroupMembership.h" #include "CPedGroupIntelligence.h" diff --git a/plugin_sa/game_sa/CPedGroupIntelligence.h b/plugin_sa/game_sa/CPedGroupIntelligence.h index a8df8d07a..6c23fee71 100644 --- a/plugin_sa/game_sa/CPedGroupIntelligence.h +++ b/plugin_sa/game_sa/CPedGroupIntelligence.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CPedTaskPair.h" #include "CPed.h" diff --git a/plugin_sa/game_sa/CPedGroupMembership.h b/plugin_sa/game_sa/CPedGroupMembership.h index aad398925..f60b25a95 100644 --- a/plugin_sa/game_sa/CPedGroupMembership.h +++ b/plugin_sa/game_sa/CPedGroupMembership.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CPed.h" diff --git a/plugin_sa/game_sa/CPedGroupPlacer.h b/plugin_sa/game_sa/CPedGroupPlacer.h index 10dc26325..77dabbffd 100644 --- a/plugin_sa/game_sa/CPedGroupPlacer.h +++ b/plugin_sa/game_sa/CPedGroupPlacer.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "ePedType.h" #include "CVector.h" diff --git a/plugin_sa/game_sa/CPedGroups.h b/plugin_sa/game_sa/CPedGroups.h index 14b1d9331..0f8e299b3 100644 --- a/plugin_sa/game_sa/CPedGroups.h +++ b/plugin_sa/game_sa/CPedGroups.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CPed.h" #include "CPedGroup.h" diff --git a/plugin_sa/game_sa/CPedIK.cpp b/plugin_sa/game_sa/CPedIK.cpp index 71acdd01b..98e6d81ac 100644 --- a/plugin_sa/game_sa/CPedIK.cpp +++ b/plugin_sa/game_sa/CPedIK.cpp @@ -1,10 +1,9 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ - #include "CPedIK.h" // Converted from thiscall void CPedIK::RotateTorso(AnimBlendFrameData *bone,LimbOrientation &orientation,bool flag) 0x5FDDB0 diff --git a/plugin_sa/game_sa/CPedIK.h b/plugin_sa/game_sa/CPedIK.h index e24cb0588..77456667c 100644 --- a/plugin_sa/game_sa/CPedIK.h +++ b/plugin_sa/game_sa/CPedIK.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "AnimBlendFrameData.h" #include "CVector.h" diff --git a/plugin_sa/game_sa/CPedIntelligence.h b/plugin_sa/game_sa/CPedIntelligence.h index 83d95fa18..20d4b09e4 100644 --- a/plugin_sa/game_sa/CPedIntelligence.h +++ b/plugin_sa/game_sa/CPedIntelligence.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CDecisionMakerTypes.h" #include "CTaskManager.h" diff --git a/plugin_sa/game_sa/CPedList.h b/plugin_sa/game_sa/CPedList.h index a2ba7726e..ff503661f 100644 --- a/plugin_sa/game_sa/CPedList.h +++ b/plugin_sa/game_sa/CPedList.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CPed.h" #include "CPedGroupMembership.h" diff --git a/plugin_sa/game_sa/CPedPlacement.h b/plugin_sa/game_sa/CPedPlacement.h index 43cc91c1c..ba5b13a3e 100644 --- a/plugin_sa/game_sa/CPedPlacement.h +++ b/plugin_sa/game_sa/CPedPlacement.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" #include "CEntity.h" diff --git a/plugin_sa/game_sa/CPedStuckChecker.h b/plugin_sa/game_sa/CPedStuckChecker.h index 7b67b2d4c..aed00d046 100644 --- a/plugin_sa/game_sa/CPedStuckChecker.h +++ b/plugin_sa/game_sa/CPedStuckChecker.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "CVector.h" class CPed; diff --git a/plugin_sa/game_sa/CPedTaskPair.h b/plugin_sa/game_sa/CPedTaskPair.h index 362731aa1..4351880e7 100644 --- a/plugin_sa/game_sa/CPedTaskPair.h +++ b/plugin_sa/game_sa/CPedTaskPair.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CPed.h" #include "CTask.h" diff --git a/plugin_sa/game_sa/CPedType.cpp b/plugin_sa/game_sa/CPedType.cpp index ce918bf1a..ebafc893a 100644 --- a/plugin_sa/game_sa/CPedType.cpp +++ b/plugin_sa/game_sa/CPedType.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) Source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) Source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CPedType.h" diff --git a/plugin_sa/game_sa/CPlayerData.h b/plugin_sa/game_sa/CPlayerData.h index d39c708a1..e0918445c 100644 --- a/plugin_sa/game_sa/CPlayerData.h +++ b/plugin_sa/game_sa/CPlayerData.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "RenderWare.h" #include "CWanted.h" diff --git a/plugin_sa/game_sa/CPlayerInfo.cpp b/plugin_sa/game_sa/CPlayerInfo.cpp index f054ba176..8b74e4c09 100644 --- a/plugin_sa/game_sa/CPlayerInfo.cpp +++ b/plugin_sa/game_sa/CPlayerInfo.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) Source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) Source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CPlayerInfo.h" diff --git a/plugin_sa/game_sa/CPlayerPed.h b/plugin_sa/game_sa/CPlayerPed.h index 041f919b6..dee16b33d 100644 --- a/plugin_sa/game_sa/CPlayerPed.h +++ b/plugin_sa/game_sa/CPlayerPed.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CPed.h" #include "eWeaponType.h" diff --git a/plugin_sa/game_sa/CPointLights.h b/plugin_sa/game_sa/CPointLights.h index edcf3d735..049a90e33 100644 --- a/plugin_sa/game_sa/CPointLights.h +++ b/plugin_sa/game_sa/CPointLights.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" diff --git a/plugin_sa/game_sa/CPointList.h b/plugin_sa/game_sa/CPointList.h index a9c6785d7..eedabd5b0 100644 --- a/plugin_sa/game_sa/CPointList.h +++ b/plugin_sa/game_sa/CPointList.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" diff --git a/plugin_sa/game_sa/CPolyBunch.h b/plugin_sa/game_sa/CPolyBunch.h index 0b2096109..13eeb9b51 100644 --- a/plugin_sa/game_sa/CPolyBunch.h +++ b/plugin_sa/game_sa/CPolyBunch.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" diff --git a/plugin_sa/game_sa/CPools.h b/plugin_sa/game_sa/CPools.h index bb3c5036b..3997b4899 100644 --- a/plugin_sa/game_sa/CPools.h +++ b/plugin_sa/game_sa/CPools.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CPool.h" #include "CCopPed.h" diff --git a/plugin_sa/game_sa/CPopCycle.cpp b/plugin_sa/game_sa/CPopCycle.cpp index d9271bb85..05cb2f005 100644 --- a/plugin_sa/game_sa/CPopCycle.cpp +++ b/plugin_sa/game_sa/CPopCycle.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CPopCycle.h" diff --git a/plugin_sa/game_sa/CProjectile.h b/plugin_sa/game_sa/CProjectile.h index bafc56bbe..51446fe1f 100644 --- a/plugin_sa/game_sa/CProjectile.h +++ b/plugin_sa/game_sa/CProjectile.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CObject.h" diff --git a/plugin_sa/game_sa/CPtrNodeDoubleLink.h b/plugin_sa/game_sa/CPtrNodeDoubleLink.h index 043ba5986..3eb852349 100644 --- a/plugin_sa/game_sa/CPtrNodeDoubleLink.h +++ b/plugin_sa/game_sa/CPtrNodeDoubleLink.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" class PLUGIN_API CPtrNodeDoubleLink { diff --git a/plugin_sa/game_sa/CPtrNodeSingleLink.h b/plugin_sa/game_sa/CPtrNodeSingleLink.h index 9e38e3168..14cf40cac 100644 --- a/plugin_sa/game_sa/CPtrNodeSingleLink.h +++ b/plugin_sa/game_sa/CPtrNodeSingleLink.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" class PLUGIN_API CPtrNodeSingleLink { diff --git a/plugin_sa/game_sa/CQuadBike.h b/plugin_sa/game_sa/CQuadBike.h index 098caa8c6..a878a7e06 100644 --- a/plugin_sa/game_sa/CQuadBike.h +++ b/plugin_sa/game_sa/CQuadBike.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CAutomobile.h" #include "CRideAnimData.h" diff --git a/plugin_sa/game_sa/CQuadTreeNode.h b/plugin_sa/game_sa/CQuadTreeNode.h index 16d69248b..37d1b9c61 100644 --- a/plugin_sa/game_sa/CQuadTreeNode.h +++ b/plugin_sa/game_sa/CQuadTreeNode.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CRect.h" #include "CPtrListSingleLink.h" diff --git a/plugin_sa/game_sa/CQuaternion.h b/plugin_sa/game_sa/CQuaternion.h index bb94e765f..e68030cc4 100644 --- a/plugin_sa/game_sa/CQuaternion.h +++ b/plugin_sa/game_sa/CQuaternion.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "RenderWare.h" #include "CVector.h" diff --git a/plugin_sa/game_sa/CQueuedMode.h b/plugin_sa/game_sa/CQueuedMode.h index 9563c78c1..e34c8673a 100644 --- a/plugin_sa/game_sa/CQueuedMode.h +++ b/plugin_sa/game_sa/CQueuedMode.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" class PLUGIN_API CQueuedMode { diff --git a/plugin_sa/game_sa/CRadar.h b/plugin_sa/game_sa/CRadar.h index f8b4cb67e..01acc853d 100644 --- a/plugin_sa/game_sa/CRadar.h +++ b/plugin_sa/game_sa/CRadar.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" #include "CRGBA.h" diff --git a/plugin_sa/game_sa/CRealTimeShadow.h b/plugin_sa/game_sa/CRealTimeShadow.h index 5fe739ab5..d1230e204 100644 --- a/plugin_sa/game_sa/CRealTimeShadow.h +++ b/plugin_sa/game_sa/CRealTimeShadow.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "RenderWare.h" #include "CShadowCamera.h" diff --git a/plugin_sa/game_sa/CRect.h b/plugin_sa/game_sa/CRect.h index a6f56d4f2..f1ed4b578 100644 --- a/plugin_sa/game_sa/CRect.h +++ b/plugin_sa/game_sa/CRect.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector2D.h" diff --git a/plugin_sa/game_sa/CReference.h b/plugin_sa/game_sa/CReference.h index 1878aba25..15fb37cd4 100644 --- a/plugin_sa/game_sa/CReference.h +++ b/plugin_sa/game_sa/CReference.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" diff --git a/plugin_sa/game_sa/CReferences.h b/plugin_sa/game_sa/CReferences.h index c7f3ad8ee..0cf6d2543 100644 --- a/plugin_sa/game_sa/CReferences.h +++ b/plugin_sa/game_sa/CReferences.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CReference.h" diff --git a/plugin_sa/game_sa/CRegisteredCorona.h b/plugin_sa/game_sa/CRegisteredCorona.h index ef5076b25..516443f66 100644 --- a/plugin_sa/game_sa/CRegisteredCorona.h +++ b/plugin_sa/game_sa/CRegisteredCorona.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" #include "RenderWare.h" diff --git a/plugin_sa/game_sa/CRoadBlocks.cpp b/plugin_sa/game_sa/CRoadBlocks.cpp index 05da93a29..d896ef37f 100644 --- a/plugin_sa/game_sa/CRoadBlocks.cpp +++ b/plugin_sa/game_sa/CRoadBlocks.cpp @@ -4,7 +4,6 @@ https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! */ - #include "CRoadBlocks.h" PLUGIN_SOURCE_FILE diff --git a/plugin_sa/game_sa/CRoadBlocks.h b/plugin_sa/game_sa/CRoadBlocks.h index 9a814558f..eb15fe19d 100644 --- a/plugin_sa/game_sa/CRoadBlocks.h +++ b/plugin_sa/game_sa/CRoadBlocks.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others work! */ #pragma once - #include "PluginBase.h" #include "CVehicle.h" #include "CVector.h" diff --git a/plugin_sa/game_sa/CRope.h b/plugin_sa/game_sa/CRope.h index 071b1cc59..c9702b6cb 100644 --- a/plugin_sa/game_sa/CRope.h +++ b/plugin_sa/game_sa/CRope.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" diff --git a/plugin_sa/game_sa/CRunningScript.cpp b/plugin_sa/game_sa/CRunningScript.cpp index 7636085f7..f2a526a7f 100644 --- a/plugin_sa/game_sa/CRunningScript.cpp +++ b/plugin_sa/game_sa/CRunningScript.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CRunningScript.h" diff --git a/plugin_sa/game_sa/CScene.h b/plugin_sa/game_sa/CScene.h index 7eea67577..53cdf358f 100644 --- a/plugin_sa/game_sa/CScene.h +++ b/plugin_sa/game_sa/CScene.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "RenderWare.h" diff --git a/plugin_sa/game_sa/CScriptResourceManager.h b/plugin_sa/game_sa/CScriptResourceManager.h index 4ac0c8692..a88c08f62 100644 --- a/plugin_sa/game_sa/CScriptResourceManager.h +++ b/plugin_sa/game_sa/CScriptResourceManager.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CRunningScript.h" diff --git a/plugin_sa/game_sa/CScriptsForBrains.h b/plugin_sa/game_sa/CScriptsForBrains.h index 84a2a761d..f84ba3b3c 100644 --- a/plugin_sa/game_sa/CScriptsForBrains.h +++ b/plugin_sa/game_sa/CScriptsForBrains.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CEntity.h" #include "CObject.h" diff --git a/plugin_sa/game_sa/CSetPiece.h b/plugin_sa/game_sa/CSetPiece.h index 2ac6bb89d..93c220651 100644 --- a/plugin_sa/game_sa/CSetPiece.h +++ b/plugin_sa/game_sa/CSetPiece.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CCopPed.h" #include "CVehicle.h" diff --git a/plugin_sa/game_sa/CSetPieces.h b/plugin_sa/game_sa/CSetPieces.h index 57bd58ff1..c5305c7e0 100644 --- a/plugin_sa/game_sa/CSetPieces.h +++ b/plugin_sa/game_sa/CSetPieces.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CSetPiece.h" diff --git a/plugin_sa/game_sa/CShadowCamera.h b/plugin_sa/game_sa/CShadowCamera.h index fc44a64dd..024fe341f 100644 --- a/plugin_sa/game_sa/CShadowCamera.h +++ b/plugin_sa/game_sa/CShadowCamera.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "RenderWare.h" diff --git a/plugin_sa/game_sa/CShadows.h b/plugin_sa/game_sa/CShadows.h index 0e1282444..80b54749e 100644 --- a/plugin_sa/game_sa/CShadows.h +++ b/plugin_sa/game_sa/CShadows.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "RenderWare.h" #include "CVector.h" diff --git a/plugin_sa/game_sa/CShopping.cpp b/plugin_sa/game_sa/CShopping.cpp index 816f0cc5a..208ca93d3 100644 --- a/plugin_sa/game_sa/CShopping.cpp +++ b/plugin_sa/game_sa/CShopping.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) Source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) Source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CShopping.h" diff --git a/plugin_sa/game_sa/CShotInfo.h b/plugin_sa/game_sa/CShotInfo.h index 0a2054dc3..d486d3891 100644 --- a/plugin_sa/game_sa/CShotInfo.h +++ b/plugin_sa/game_sa/CShotInfo.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" #include "eWeaponType.h" diff --git a/plugin_sa/game_sa/CSimpleTransform.h b/plugin_sa/game_sa/CSimpleTransform.h index 7a73450c2..86e940094 100644 --- a/plugin_sa/game_sa/CSimpleTransform.h +++ b/plugin_sa/game_sa/CSimpleTransform.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "RenderWare.h" #include "CVector.h" diff --git a/plugin_sa/game_sa/CSpecialPlateHandler.h b/plugin_sa/game_sa/CSpecialPlateHandler.h index f15d29dcb..ff9257234 100644 --- a/plugin_sa/game_sa/CSpecialPlateHandler.h +++ b/plugin_sa/game_sa/CSpecialPlateHandler.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" struct tCarGenPlateText { diff --git a/plugin_sa/game_sa/CSphere.h b/plugin_sa/game_sa/CSphere.h index 238d3f292..8a2826830 100644 --- a/plugin_sa/game_sa/CSphere.h +++ b/plugin_sa/game_sa/CSphere.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" diff --git a/plugin_sa/game_sa/CSprite.h b/plugin_sa/game_sa/CSprite.h index bc134f202..2abcfa6a7 100644 --- a/plugin_sa/game_sa/CSprite.h +++ b/plugin_sa/game_sa/CSprite.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "RenderWare.h" diff --git a/plugin_sa/game_sa/CSprite2d.h b/plugin_sa/game_sa/CSprite2d.h index 93f5bbb7f..8026d69cf 100644 --- a/plugin_sa/game_sa/CSprite2d.h +++ b/plugin_sa/game_sa/CSprite2d.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CRect.h" #include "CRGBA.h" diff --git a/plugin_sa/game_sa/CStats.h b/plugin_sa/game_sa/CStats.h index a64f15db3..a3245c1fd 100644 --- a/plugin_sa/game_sa/CStats.h +++ b/plugin_sa/game_sa/CStats.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "eStats.h" #include "eStatModAbilities.h" diff --git a/plugin_sa/game_sa/CStoredCollPoly.h b/plugin_sa/game_sa/CStoredCollPoly.h index d0b8e1e6f..c5a856818 100644 --- a/plugin_sa/game_sa/CStoredCollPoly.h +++ b/plugin_sa/game_sa/CStoredCollPoly.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" diff --git a/plugin_sa/game_sa/CStreamedScripts.h b/plugin_sa/game_sa/CStreamedScripts.h index d400babb8..fefd6fec0 100644 --- a/plugin_sa/game_sa/CStreamedScripts.h +++ b/plugin_sa/game_sa/CStreamedScripts.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "RenderWare.h" #include "CRunningScript.h" diff --git a/plugin_sa/game_sa/CStuckCarCheck.h b/plugin_sa/game_sa/CStuckCarCheck.h index c81ed29aa..7849a8518 100644 --- a/plugin_sa/game_sa/CStuckCarCheck.h +++ b/plugin_sa/game_sa/CStuckCarCheck.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVehicle.h" #include "CVector.h" diff --git a/plugin_sa/game_sa/CStuntJumpManager.cpp b/plugin_sa/game_sa/CStuntJumpManager.cpp index 237ef2b38..07f721ce9 100644 --- a/plugin_sa/game_sa/CStuntJumpManager.cpp +++ b/plugin_sa/game_sa/CStuntJumpManager.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) Source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) Source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CStuntJumpManager.h" diff --git a/plugin_sa/game_sa/CTagManager.cpp b/plugin_sa/game_sa/CTagManager.cpp index 4a6c33de6..bc826d0e6 100644 --- a/plugin_sa/game_sa/CTagManager.cpp +++ b/plugin_sa/game_sa/CTagManager.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) Source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) Source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CTagManager.h" diff --git a/plugin_sa/game_sa/CTaskComplex.h b/plugin_sa/game_sa/CTaskComplex.h index c09025e7f..6621d6868 100644 --- a/plugin_sa/game_sa/CTaskComplex.h +++ b/plugin_sa/game_sa/CTaskComplex.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTask.h" diff --git a/plugin_sa/game_sa/CTaskComplexClimb.cpp b/plugin_sa/game_sa/CTaskComplexClimb.cpp index edfac2f9a..09cb20e60 100644 --- a/plugin_sa/game_sa/CTaskComplexClimb.cpp +++ b/plugin_sa/game_sa/CTaskComplexClimb.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CTaskComplexClimb.h" diff --git a/plugin_sa/game_sa/CTaskComplexClimb.h b/plugin_sa/game_sa/CTaskComplexClimb.h index cd5ac5375..a3c742e95 100644 --- a/plugin_sa/game_sa/CTaskComplexClimb.h +++ b/plugin_sa/game_sa/CTaskComplexClimb.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskComplexJump.h" diff --git a/plugin_sa/game_sa/CTaskComplexCopInCar.cpp b/plugin_sa/game_sa/CTaskComplexCopInCar.cpp index 2e4bdb2be..52282e2e9 100644 --- a/plugin_sa/game_sa/CTaskComplexCopInCar.cpp +++ b/plugin_sa/game_sa/CTaskComplexCopInCar.cpp @@ -1,10 +1,9 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ - #include "CTaskComplexCopInCar.h" CTaskComplexCopInCar::CTaskComplexCopInCar(CVehicle* pVeh,CPed* pCop1,CPed* pCop2,bool arg3) diff --git a/plugin_sa/game_sa/CTaskComplexCopInCar.h b/plugin_sa/game_sa/CTaskComplexCopInCar.h index b9c6756a8..f1e5b1ff2 100644 --- a/plugin_sa/game_sa/CTaskComplexCopInCar.h +++ b/plugin_sa/game_sa/CTaskComplexCopInCar.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskComplex.h" #include "CVehicle.h" diff --git a/plugin_sa/game_sa/CTaskComplexDie.cpp b/plugin_sa/game_sa/CTaskComplexDie.cpp index d93550d2d..ead7b1628 100644 --- a/plugin_sa/game_sa/CTaskComplexDie.cpp +++ b/plugin_sa/game_sa/CTaskComplexDie.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CTaskComplexDie.h" diff --git a/plugin_sa/game_sa/CTaskComplexDie.h b/plugin_sa/game_sa/CTaskComplexDie.h index b228e482c..1761125e2 100644 --- a/plugin_sa/game_sa/CTaskComplexDie.h +++ b/plugin_sa/game_sa/CTaskComplexDie.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskComplex.h" #include "eWeaponType.h" diff --git a/plugin_sa/game_sa/CTaskComplexDriveFireTruck.cpp b/plugin_sa/game_sa/CTaskComplexDriveFireTruck.cpp index c367ed9e8..bb742db33 100644 --- a/plugin_sa/game_sa/CTaskComplexDriveFireTruck.cpp +++ b/plugin_sa/game_sa/CTaskComplexDriveFireTruck.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CTaskComplex.h" #include "CTaskComplexDriveFireTruck.h" diff --git a/plugin_sa/game_sa/CTaskComplexDriveFireTruck.h b/plugin_sa/game_sa/CTaskComplexDriveFireTruck.h index 72cbe95c1..60b53fa52 100644 --- a/plugin_sa/game_sa/CTaskComplexDriveFireTruck.h +++ b/plugin_sa/game_sa/CTaskComplexDriveFireTruck.h @@ -1,10 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! -*/#pragma once - + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! +*/ +#pragma once #include "PluginBase.h" #include "CVehicle.h" #include "CTaskComplex.h" diff --git a/plugin_sa/game_sa/CTaskComplexEnterBoatAsDriver.cpp b/plugin_sa/game_sa/CTaskComplexEnterBoatAsDriver.cpp index de4c2abd5..e6812f78c 100644 --- a/plugin_sa/game_sa/CTaskComplexEnterBoatAsDriver.cpp +++ b/plugin_sa/game_sa/CTaskComplexEnterBoatAsDriver.cpp @@ -1,10 +1,9 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ - #include "CTaskComplexEnterBoatAsDriver.h" CTaskComplexEnterBoatAsDriver::CTaskComplexEnterBoatAsDriver(CVehicle* pTargetVehicle) : CTaskComplex(plugin::dummy) diff --git a/plugin_sa/game_sa/CTaskComplexEnterBoatAsDriver.h b/plugin_sa/game_sa/CTaskComplexEnterBoatAsDriver.h index 1b72bb9b2..6ab80d7d5 100644 --- a/plugin_sa/game_sa/CTaskComplexEnterBoatAsDriver.h +++ b/plugin_sa/game_sa/CTaskComplexEnterBoatAsDriver.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskComplex.h" #include "CVehicle.h" diff --git a/plugin_sa/game_sa/CTaskComplexEnterCar.cpp b/plugin_sa/game_sa/CTaskComplexEnterCar.cpp index 45fde3531..0f9fd63b8 100644 --- a/plugin_sa/game_sa/CTaskComplexEnterCar.cpp +++ b/plugin_sa/game_sa/CTaskComplexEnterCar.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CTaskComplexEnterCar.h" diff --git a/plugin_sa/game_sa/CTaskComplexEnterCar.h b/plugin_sa/game_sa/CTaskComplexEnterCar.h index 33f52c602..302287518 100644 --- a/plugin_sa/game_sa/CTaskComplexEnterCar.h +++ b/plugin_sa/game_sa/CTaskComplexEnterCar.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskComplex.h" #include "CPathFind.h" diff --git a/plugin_sa/game_sa/CTaskComplexEnterCarAsDriver.cpp b/plugin_sa/game_sa/CTaskComplexEnterCarAsDriver.cpp index b2cf8e2e3..83fdf6aeb 100644 --- a/plugin_sa/game_sa/CTaskComplexEnterCarAsDriver.cpp +++ b/plugin_sa/game_sa/CTaskComplexEnterCarAsDriver.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CTaskComplexEnterCarAsDriver.h" diff --git a/plugin_sa/game_sa/CTaskComplexEnterCarAsDriver.h b/plugin_sa/game_sa/CTaskComplexEnterCarAsDriver.h index f9fdc3a64..37f1f23b6 100644 --- a/plugin_sa/game_sa/CTaskComplexEnterCarAsDriver.h +++ b/plugin_sa/game_sa/CTaskComplexEnterCarAsDriver.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskComplexEnterCar.h" diff --git a/plugin_sa/game_sa/CTaskComplexEnterCarAsPassenger.cpp b/plugin_sa/game_sa/CTaskComplexEnterCarAsPassenger.cpp index 6c622073d..c1b4a6544 100644 --- a/plugin_sa/game_sa/CTaskComplexEnterCarAsPassenger.cpp +++ b/plugin_sa/game_sa/CTaskComplexEnterCarAsPassenger.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CTaskComplexEnterCarAsPassenger.h" diff --git a/plugin_sa/game_sa/CTaskComplexEnterCarAsPassenger.h b/plugin_sa/game_sa/CTaskComplexEnterCarAsPassenger.h index 6cff3a1d8..0525283b7 100644 --- a/plugin_sa/game_sa/CTaskComplexEnterCarAsPassenger.h +++ b/plugin_sa/game_sa/CTaskComplexEnterCarAsPassenger.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskComplexEnterCar.h" diff --git a/plugin_sa/game_sa/CTaskComplexFacial.cpp b/plugin_sa/game_sa/CTaskComplexFacial.cpp index ddab962fa..56cd6c31c 100644 --- a/plugin_sa/game_sa/CTaskComplexFacial.cpp +++ b/plugin_sa/game_sa/CTaskComplexFacial.cpp @@ -1,10 +1,9 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ - #include "CTaskComplexFacial.h" CTaskComplexFacial::CTaskComplexFacial() : CTaskComplex(plugin::dummy) diff --git a/plugin_sa/game_sa/CTaskComplexFacial.h b/plugin_sa/game_sa/CTaskComplexFacial.h index e514c8508..87eaa0cd8 100644 --- a/plugin_sa/game_sa/CTaskComplexFacial.h +++ b/plugin_sa/game_sa/CTaskComplexFacial.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskComplex.h" #include "CTaskSimpleFacial.h" diff --git a/plugin_sa/game_sa/CTaskComplexJump.cpp b/plugin_sa/game_sa/CTaskComplexJump.cpp index a038dae97..afe799ea3 100644 --- a/plugin_sa/game_sa/CTaskComplexJump.cpp +++ b/plugin_sa/game_sa/CTaskComplexJump.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CTaskComplexJump.h" diff --git a/plugin_sa/game_sa/CTaskComplexJump.h b/plugin_sa/game_sa/CTaskComplexJump.h index bb97e93bf..8822c0842 100644 --- a/plugin_sa/game_sa/CTaskComplexJump.h +++ b/plugin_sa/game_sa/CTaskComplexJump.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskComplex.h" diff --git a/plugin_sa/game_sa/CTaskComplexKillPedFromBoat.cpp b/plugin_sa/game_sa/CTaskComplexKillPedFromBoat.cpp index 2057a1a12..9114e1dec 100644 --- a/plugin_sa/game_sa/CTaskComplexKillPedFromBoat.cpp +++ b/plugin_sa/game_sa/CTaskComplexKillPedFromBoat.cpp @@ -1,10 +1,9 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ - #include "CTaskComplexKillPedFromBoat.h" CTaskComplexKillPedFromBoat::CTaskComplexKillPedFromBoat(CPed* ped) : CTaskComplex(plugin::dummy) diff --git a/plugin_sa/game_sa/CTaskComplexKillPedFromBoat.h b/plugin_sa/game_sa/CTaskComplexKillPedFromBoat.h index 28a3883f6..983a47365 100644 --- a/plugin_sa/game_sa/CTaskComplexKillPedFromBoat.h +++ b/plugin_sa/game_sa/CTaskComplexKillPedFromBoat.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskComplex.h" #include "CPed.h" diff --git a/plugin_sa/game_sa/CTaskComplexKillPedOnFoot.h b/plugin_sa/game_sa/CTaskComplexKillPedOnFoot.h index 273597d67..113d0b38a 100644 --- a/plugin_sa/game_sa/CTaskComplexKillPedOnFoot.h +++ b/plugin_sa/game_sa/CTaskComplexKillPedOnFoot.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskComplex.h" #include "CTaskTimer.h" diff --git a/plugin_sa/game_sa/CTaskComplexLeaveCar.cpp b/plugin_sa/game_sa/CTaskComplexLeaveCar.cpp index 0f07ec79e..08a875c93 100644 --- a/plugin_sa/game_sa/CTaskComplexLeaveCar.cpp +++ b/plugin_sa/game_sa/CTaskComplexLeaveCar.cpp @@ -1,10 +1,9 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ - #include "CTaskComplexLeaveCar.h" CTaskComplexLeaveCar::CTaskComplexLeaveCar(CVehicle* pTargetVehicle, int nTargetDoor, int nDelayTime, bool bSensibleLeaveCar, bool bForceGetOut) : CTaskComplex(plugin::dummy) diff --git a/plugin_sa/game_sa/CTaskComplexLeaveCar.h b/plugin_sa/game_sa/CTaskComplexLeaveCar.h index 2da6d30d3..503fb3039 100644 --- a/plugin_sa/game_sa/CTaskComplexLeaveCar.h +++ b/plugin_sa/game_sa/CTaskComplexLeaveCar.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskComplex.h" #include "CVehicle.h" diff --git a/plugin_sa/game_sa/CTaskComplexMedicTreatInjuredPed.cpp b/plugin_sa/game_sa/CTaskComplexMedicTreatInjuredPed.cpp index 40f4606c1..e9ea75e14 100644 --- a/plugin_sa/game_sa/CTaskComplexMedicTreatInjuredPed.cpp +++ b/plugin_sa/game_sa/CTaskComplexMedicTreatInjuredPed.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CTaskComplex.h" #include "CTaskComplexMedicTreatInjuredPed.h" diff --git a/plugin_sa/game_sa/CTaskComplexMedicTreatInjuredPed.h b/plugin_sa/game_sa/CTaskComplexMedicTreatInjuredPed.h index 8dec57f81..483e48258 100644 --- a/plugin_sa/game_sa/CTaskComplexMedicTreatInjuredPed.h +++ b/plugin_sa/game_sa/CTaskComplexMedicTreatInjuredPed.h @@ -1,10 +1,9 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */#pragma once - #include "PluginBase.h" #include "CVehicle.h" #include "CTaskComplex.h" diff --git a/plugin_sa/game_sa/CTaskComplexPlayHandSignalAnim.h b/plugin_sa/game_sa/CTaskComplexPlayHandSignalAnim.h index 2c928d281..c842d168d 100644 --- a/plugin_sa/game_sa/CTaskComplexPlayHandSignalAnim.h +++ b/plugin_sa/game_sa/CTaskComplexPlayHandSignalAnim.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskComplex.h" diff --git a/plugin_sa/game_sa/CTaskComplexProstituteSolicit.h b/plugin_sa/game_sa/CTaskComplexProstituteSolicit.h index bf463d7ce..6413e5854 100644 --- a/plugin_sa/game_sa/CTaskComplexProstituteSolicit.h +++ b/plugin_sa/game_sa/CTaskComplexProstituteSolicit.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskComplex.h" #include "CPed.h" diff --git a/plugin_sa/game_sa/CTaskComplexSequence.h b/plugin_sa/game_sa/CTaskComplexSequence.h index b2d35b912..dc3e6e405 100644 --- a/plugin_sa/game_sa/CTaskComplexSequence.h +++ b/plugin_sa/game_sa/CTaskComplexSequence.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskComplex.h" diff --git a/plugin_sa/game_sa/CTaskComplexStuckInAir.cpp b/plugin_sa/game_sa/CTaskComplexStuckInAir.cpp index d6402fd07..2bcc51417 100644 --- a/plugin_sa/game_sa/CTaskComplexStuckInAir.cpp +++ b/plugin_sa/game_sa/CTaskComplexStuckInAir.cpp @@ -1,10 +1,9 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ - #include "CTaskComplexStuckInAir.h" CTaskComplexStuckInAir::CTaskComplexStuckInAir() : CTaskComplex(plugin::dummy) diff --git a/plugin_sa/game_sa/CTaskComplexStuckInAir.h b/plugin_sa/game_sa/CTaskComplexStuckInAir.h index 43f55afd1..d06020508 100644 --- a/plugin_sa/game_sa/CTaskComplexStuckInAir.h +++ b/plugin_sa/game_sa/CTaskComplexStuckInAir.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskComplex.h" diff --git a/plugin_sa/game_sa/CTaskComplexSunbathe.cpp b/plugin_sa/game_sa/CTaskComplexSunbathe.cpp index b04448af4..44f26e0da 100644 --- a/plugin_sa/game_sa/CTaskComplexSunbathe.cpp +++ b/plugin_sa/game_sa/CTaskComplexSunbathe.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CTaskComplexSunbathe.h" diff --git a/plugin_sa/game_sa/CTaskComplexSunbathe.h b/plugin_sa/game_sa/CTaskComplexSunbathe.h index 3c1590d46..98f8c506b 100644 --- a/plugin_sa/game_sa/CTaskComplexSunbathe.h +++ b/plugin_sa/game_sa/CTaskComplexSunbathe.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskComplex.h" #include "CTaskTimer.h" diff --git a/plugin_sa/game_sa/CTaskComplexUseMobilePhone.cpp b/plugin_sa/game_sa/CTaskComplexUseMobilePhone.cpp index 28afbb466..289774d96 100644 --- a/plugin_sa/game_sa/CTaskComplexUseMobilePhone.cpp +++ b/plugin_sa/game_sa/CTaskComplexUseMobilePhone.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CTaskComplexUseMobilePhone.h" diff --git a/plugin_sa/game_sa/CTaskComplexUseMobilePhone.h b/plugin_sa/game_sa/CTaskComplexUseMobilePhone.h index a01916c7c..77999850f 100644 --- a/plugin_sa/game_sa/CTaskComplexUseMobilePhone.h +++ b/plugin_sa/game_sa/CTaskComplexUseMobilePhone.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskComplex.h" #include "CTaskTimer.h" diff --git a/plugin_sa/game_sa/CTaskComplexWander.h b/plugin_sa/game_sa/CTaskComplexWander.h index ad4d6ae1b..78714b761 100644 --- a/plugin_sa/game_sa/CTaskComplexWander.h +++ b/plugin_sa/game_sa/CTaskComplexWander.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskComplex.h" #include "CNodeAddress.h" diff --git a/plugin_sa/game_sa/CTaskComplexWanderStandard.h b/plugin_sa/game_sa/CTaskComplexWanderStandard.h index c6fbb2435..84a2251dd 100644 --- a/plugin_sa/game_sa/CTaskComplexWanderStandard.h +++ b/plugin_sa/game_sa/CTaskComplexWanderStandard.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskComplexWander.h" #include "CTaskTimer.h" diff --git a/plugin_sa/game_sa/CTaskManager.h b/plugin_sa/game_sa/CTaskManager.h index 6c2dfdccd..3a3d513e1 100644 --- a/plugin_sa/game_sa/CTaskManager.h +++ b/plugin_sa/game_sa/CTaskManager.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTask.h" diff --git a/plugin_sa/game_sa/CTaskSimple.h b/plugin_sa/game_sa/CTaskSimple.h index 383f2fbde..695d4a185 100644 --- a/plugin_sa/game_sa/CTaskSimple.h +++ b/plugin_sa/game_sa/CTaskSimple.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTask.h" diff --git a/plugin_sa/game_sa/CTaskSimpleAnim.h b/plugin_sa/game_sa/CTaskSimpleAnim.h index e46565b17..9c881fc06 100644 --- a/plugin_sa/game_sa/CTaskSimpleAnim.h +++ b/plugin_sa/game_sa/CTaskSimpleAnim.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskSimple.h" #include "CAnimBlendAssociation.h" diff --git a/plugin_sa/game_sa/CTaskSimpleCarSetPedInAsDriver.h b/plugin_sa/game_sa/CTaskSimpleCarSetPedInAsDriver.h index a3c455cf3..416dc6534 100644 --- a/plugin_sa/game_sa/CTaskSimpleCarSetPedInAsDriver.h +++ b/plugin_sa/game_sa/CTaskSimpleCarSetPedInAsDriver.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskSimple.h" #include "CVehicle.h" diff --git a/plugin_sa/game_sa/CTaskSimpleCarSetPedInAsPassenger.cpp b/plugin_sa/game_sa/CTaskSimpleCarSetPedInAsPassenger.cpp index 0722b94ff..c738cabd3 100644 --- a/plugin_sa/game_sa/CTaskSimpleCarSetPedInAsPassenger.cpp +++ b/plugin_sa/game_sa/CTaskSimpleCarSetPedInAsPassenger.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CTaskSimpleCarSetPedInAsPassenger.h" diff --git a/plugin_sa/game_sa/CTaskSimpleCarSetPedInAsPassenger.h b/plugin_sa/game_sa/CTaskSimpleCarSetPedInAsPassenger.h index e48bb6a70..af32b11ff 100644 --- a/plugin_sa/game_sa/CTaskSimpleCarSetPedInAsPassenger.h +++ b/plugin_sa/game_sa/CTaskSimpleCarSetPedInAsPassenger.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskSimple.h" #include "CVehicle.h" diff --git a/plugin_sa/game_sa/CTaskSimpleCarSetPedOut.cpp b/plugin_sa/game_sa/CTaskSimpleCarSetPedOut.cpp index a8f0f3aba..6afc73829 100644 --- a/plugin_sa/game_sa/CTaskSimpleCarSetPedOut.cpp +++ b/plugin_sa/game_sa/CTaskSimpleCarSetPedOut.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CTaskSimpleCarSetPedOut.h" diff --git a/plugin_sa/game_sa/CTaskSimpleCarSetPedOut.h b/plugin_sa/game_sa/CTaskSimpleCarSetPedOut.h index 274d0224e..145f3c086 100644 --- a/plugin_sa/game_sa/CTaskSimpleCarSetPedOut.h +++ b/plugin_sa/game_sa/CTaskSimpleCarSetPedOut.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskSimple.h" #include "CVehicle.h" diff --git a/plugin_sa/game_sa/CTaskSimpleChoking.cpp b/plugin_sa/game_sa/CTaskSimpleChoking.cpp index 073688465..31efb8201 100644 --- a/plugin_sa/game_sa/CTaskSimpleChoking.cpp +++ b/plugin_sa/game_sa/CTaskSimpleChoking.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CTaskSimpleChoking.h" diff --git a/plugin_sa/game_sa/CTaskSimpleChoking.h b/plugin_sa/game_sa/CTaskSimpleChoking.h index c5d499c07..433653199 100644 --- a/plugin_sa/game_sa/CTaskSimpleChoking.h +++ b/plugin_sa/game_sa/CTaskSimpleChoking.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskSimple.h" #include "CAnimBlendAssociation.h" diff --git a/plugin_sa/game_sa/CTaskSimpleClimb.h b/plugin_sa/game_sa/CTaskSimpleClimb.h index c743b59cd..768799ecd 100644 --- a/plugin_sa/game_sa/CTaskSimpleClimb.h +++ b/plugin_sa/game_sa/CTaskSimpleClimb.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskSimple.h" #include "CAnimBlendAssociation.h" diff --git a/plugin_sa/game_sa/CTaskSimpleDuck.h b/plugin_sa/game_sa/CTaskSimpleDuck.h index 1e65318e6..e64489c29 100644 --- a/plugin_sa/game_sa/CTaskSimpleDuck.h +++ b/plugin_sa/game_sa/CTaskSimpleDuck.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskSimple.h" #include "CAnimBlendAssociation.h" diff --git a/plugin_sa/game_sa/CTaskSimpleDuckToggle.h b/plugin_sa/game_sa/CTaskSimpleDuckToggle.h index cc2a67bdf..5e627744d 100644 --- a/plugin_sa/game_sa/CTaskSimpleDuckToggle.h +++ b/plugin_sa/game_sa/CTaskSimpleDuckToggle.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskSimple.h" diff --git a/plugin_sa/game_sa/CTaskSimpleFacial.cpp b/plugin_sa/game_sa/CTaskSimpleFacial.cpp index 906b7416f..6a5d040ea 100644 --- a/plugin_sa/game_sa/CTaskSimpleFacial.cpp +++ b/plugin_sa/game_sa/CTaskSimpleFacial.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CTaskSimpleFacial.h" diff --git a/plugin_sa/game_sa/CTaskSimpleFacial.h b/plugin_sa/game_sa/CTaskSimpleFacial.h index 883878f20..8aef4d44d 100644 --- a/plugin_sa/game_sa/CTaskSimpleFacial.h +++ b/plugin_sa/game_sa/CTaskSimpleFacial.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskSimple.h" #include "CTaskTimer.h" diff --git a/plugin_sa/game_sa/CTaskSimpleFight.h b/plugin_sa/game_sa/CTaskSimpleFight.h index 12b9c9907..97034ead8 100644 --- a/plugin_sa/game_sa/CTaskSimpleFight.h +++ b/plugin_sa/game_sa/CTaskSimpleFight.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskSimple.h" #include "CAnimBlendAssociation.h" diff --git a/plugin_sa/game_sa/CTaskSimpleGangDriveBy.cpp b/plugin_sa/game_sa/CTaskSimpleGangDriveBy.cpp index 8176f4b55..0f78b0917 100644 --- a/plugin_sa/game_sa/CTaskSimpleGangDriveBy.cpp +++ b/plugin_sa/game_sa/CTaskSimpleGangDriveBy.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CTaskSimpleGangDriveBy.h" diff --git a/plugin_sa/game_sa/CTaskSimpleGangDriveBy.h b/plugin_sa/game_sa/CTaskSimpleGangDriveBy.h index cc79fc615..864f76147 100644 --- a/plugin_sa/game_sa/CTaskSimpleGangDriveBy.h +++ b/plugin_sa/game_sa/CTaskSimpleGangDriveBy.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskSimple.h" #include "CAnimBlendAssociation.h" diff --git a/plugin_sa/game_sa/CTaskSimpleIKChain.cpp b/plugin_sa/game_sa/CTaskSimpleIKChain.cpp index abf291252..f561a5a0e 100644 --- a/plugin_sa/game_sa/CTaskSimpleIKChain.cpp +++ b/plugin_sa/game_sa/CTaskSimpleIKChain.cpp @@ -1,10 +1,9 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ - #include "CTaskSimpleIKChain.h" CTaskSimpleIKChain::CTaskSimpleIKChain(char* _IGNORED_ idString , int effectorBoneTag, RwV3d effectorVec, int pivotBoneTag, diff --git a/plugin_sa/game_sa/CTaskSimpleIKChain.h b/plugin_sa/game_sa/CTaskSimpleIKChain.h index bb8cdb9b7..9858912f4 100644 --- a/plugin_sa/game_sa/CTaskSimpleIKChain.h +++ b/plugin_sa/game_sa/CTaskSimpleIKChain.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskSimple.h" #include "CAnimBlendAssociation.h" diff --git a/plugin_sa/game_sa/CTaskSimpleIKLookAt.cpp b/plugin_sa/game_sa/CTaskSimpleIKLookAt.cpp index 86def4b5e..dfe73418e 100644 --- a/plugin_sa/game_sa/CTaskSimpleIKLookAt.cpp +++ b/plugin_sa/game_sa/CTaskSimpleIKLookAt.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CTaskSimpleIKLookAt.h" diff --git a/plugin_sa/game_sa/CTaskSimpleIKLookAt.h b/plugin_sa/game_sa/CTaskSimpleIKLookAt.h index 26bcb1c89..5b47310f1 100644 --- a/plugin_sa/game_sa/CTaskSimpleIKLookAt.h +++ b/plugin_sa/game_sa/CTaskSimpleIKLookAt.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskSimple.h" #include "CAnimBlendAssociation.h" diff --git a/plugin_sa/game_sa/CTaskSimpleIKManager.cpp b/plugin_sa/game_sa/CTaskSimpleIKManager.cpp index 38e3d9d59..4d8ce12d9 100644 --- a/plugin_sa/game_sa/CTaskSimpleIKManager.cpp +++ b/plugin_sa/game_sa/CTaskSimpleIKManager.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CTaskSimpleIKManager.h" diff --git a/plugin_sa/game_sa/CTaskSimpleIKManager.h b/plugin_sa/game_sa/CTaskSimpleIKManager.h index 114c4b807..de2bcef45 100644 --- a/plugin_sa/game_sa/CTaskSimpleIKManager.h +++ b/plugin_sa/game_sa/CTaskSimpleIKManager.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskSimpleIKChain.h" diff --git a/plugin_sa/game_sa/CTaskSimpleInAir.h b/plugin_sa/game_sa/CTaskSimpleInAir.h index 9d271897f..0ade9c030 100644 --- a/plugin_sa/game_sa/CTaskSimpleInAir.h +++ b/plugin_sa/game_sa/CTaskSimpleInAir.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskSimple.h" #include "CTaskTimer.h" diff --git a/plugin_sa/game_sa/CTaskSimpleJetpack.h b/plugin_sa/game_sa/CTaskSimpleJetpack.h index b3c7ad6da..d3ba30d2d 100644 --- a/plugin_sa/game_sa/CTaskSimpleJetpack.h +++ b/plugin_sa/game_sa/CTaskSimpleJetpack.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskSimple.h" #include "CVector.h" diff --git a/plugin_sa/game_sa/CTaskSimpleJump.h b/plugin_sa/game_sa/CTaskSimpleJump.h index 92d99e35b..4b4354cf7 100644 --- a/plugin_sa/game_sa/CTaskSimpleJump.h +++ b/plugin_sa/game_sa/CTaskSimpleJump.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskSimple.h" #include "CAnimBlendAssociation.h" diff --git a/plugin_sa/game_sa/CTaskSimplePlayerOnFoot.cpp b/plugin_sa/game_sa/CTaskSimplePlayerOnFoot.cpp index 0ce0c3563..28e170fcb 100644 --- a/plugin_sa/game_sa/CTaskSimplePlayerOnFoot.cpp +++ b/plugin_sa/game_sa/CTaskSimplePlayerOnFoot.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CTaskSimplePlayerOnFoot.h" diff --git a/plugin_sa/game_sa/CTaskSimplePlayerOnFoot.h b/plugin_sa/game_sa/CTaskSimplePlayerOnFoot.h index d1785aac5..7632b6e5f 100644 --- a/plugin_sa/game_sa/CTaskSimplePlayerOnFoot.h +++ b/plugin_sa/game_sa/CTaskSimplePlayerOnFoot.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskSimple.h" #include "CAnimBlendAssociation.h" diff --git a/plugin_sa/game_sa/CTaskSimpleRunAnim.cpp b/plugin_sa/game_sa/CTaskSimpleRunAnim.cpp index 2808ca956..d90e8aed0 100644 --- a/plugin_sa/game_sa/CTaskSimpleRunAnim.cpp +++ b/plugin_sa/game_sa/CTaskSimpleRunAnim.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CTaskSimpleRunAnim.h" diff --git a/plugin_sa/game_sa/CTaskSimpleRunAnim.h b/plugin_sa/game_sa/CTaskSimpleRunAnim.h index c10ba2ea4..b96295f47 100644 --- a/plugin_sa/game_sa/CTaskSimpleRunAnim.h +++ b/plugin_sa/game_sa/CTaskSimpleRunAnim.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskSimpleAnim.h" #include "CAnimBlendAssociation.h" diff --git a/plugin_sa/game_sa/CTaskSimpleRunNamedAnim.cpp b/plugin_sa/game_sa/CTaskSimpleRunNamedAnim.cpp index 3fcc2651d..e80000b98 100644 --- a/plugin_sa/game_sa/CTaskSimpleRunNamedAnim.cpp +++ b/plugin_sa/game_sa/CTaskSimpleRunNamedAnim.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CTaskSimpleRunNamedAnim.h" diff --git a/plugin_sa/game_sa/CTaskSimpleRunNamedAnim.h b/plugin_sa/game_sa/CTaskSimpleRunNamedAnim.h index ac8519757..6d2894546 100644 --- a/plugin_sa/game_sa/CTaskSimpleRunNamedAnim.h +++ b/plugin_sa/game_sa/CTaskSimpleRunNamedAnim.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskSimpleAnim.h" #include "CAnimBlendHierarchy.h" diff --git a/plugin_sa/game_sa/CTaskSimpleStandStill.h b/plugin_sa/game_sa/CTaskSimpleStandStill.h index 57f7149ab..25cd0359f 100644 --- a/plugin_sa/game_sa/CTaskSimpleStandStill.h +++ b/plugin_sa/game_sa/CTaskSimpleStandStill.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskSimple.h" #include "CTaskTimer.h" diff --git a/plugin_sa/game_sa/CTaskSimpleStealthKill.cpp b/plugin_sa/game_sa/CTaskSimpleStealthKill.cpp index 3bc19dd3b..da916e87f 100644 --- a/plugin_sa/game_sa/CTaskSimpleStealthKill.cpp +++ b/plugin_sa/game_sa/CTaskSimpleStealthKill.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CTaskSimpleStealthKill.h" diff --git a/plugin_sa/game_sa/CTaskSimpleStealthKill.h b/plugin_sa/game_sa/CTaskSimpleStealthKill.h index 66ef4c887..cbb95357a 100644 --- a/plugin_sa/game_sa/CTaskSimpleStealthKill.h +++ b/plugin_sa/game_sa/CTaskSimpleStealthKill.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskSimple.h" #include "CPed.h" diff --git a/plugin_sa/game_sa/CTaskSimpleSwim.h b/plugin_sa/game_sa/CTaskSimpleSwim.h index e94e9137e..363503c42 100644 --- a/plugin_sa/game_sa/CTaskSimpleSwim.h +++ b/plugin_sa/game_sa/CTaskSimpleSwim.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskSimple.h" #include "CVector.h" diff --git a/plugin_sa/game_sa/CTaskSimpleThrowProjectile.h b/plugin_sa/game_sa/CTaskSimpleThrowProjectile.h index c0c761917..70c06f40e 100644 --- a/plugin_sa/game_sa/CTaskSimpleThrowProjectile.h +++ b/plugin_sa/game_sa/CTaskSimpleThrowProjectile.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskSimple.h" #include "CAnimBlendAssociation.h" diff --git a/plugin_sa/game_sa/CTaskSimpleTriggerLookAt.cpp b/plugin_sa/game_sa/CTaskSimpleTriggerLookAt.cpp index 4129e5149..a2597c0fa 100644 --- a/plugin_sa/game_sa/CTaskSimpleTriggerLookAt.cpp +++ b/plugin_sa/game_sa/CTaskSimpleTriggerLookAt.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CTaskSimpleTriggerLookAt.h" diff --git a/plugin_sa/game_sa/CTaskSimpleTriggerLookAt.h b/plugin_sa/game_sa/CTaskSimpleTriggerLookAt.h index fa5c6a662..3bda88d0b 100644 --- a/plugin_sa/game_sa/CTaskSimpleTriggerLookAt.h +++ b/plugin_sa/game_sa/CTaskSimpleTriggerLookAt.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskSimple.h" #include "CAnimBlendAssociation.h" diff --git a/plugin_sa/game_sa/CTaskSimpleUseGun.h b/plugin_sa/game_sa/CTaskSimpleUseGun.h index 0c5f144de..cd07e1482 100644 --- a/plugin_sa/game_sa/CTaskSimpleUseGun.h +++ b/plugin_sa/game_sa/CTaskSimpleUseGun.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskSimple.h" #include "CVector.h" diff --git a/plugin_sa/game_sa/CTaskTimer.h b/plugin_sa/game_sa/CTaskTimer.h index 9f143ca40..f8ec87bab 100644 --- a/plugin_sa/game_sa/CTaskTimer.h +++ b/plugin_sa/game_sa/CTaskTimer.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" class PLUGIN_API CTaskTimer diff --git a/plugin_sa/game_sa/CTaskUtilityLineUpPedWithCar.h b/plugin_sa/game_sa/CTaskUtilityLineUpPedWithCar.h index d4e23abaf..263ab4b89 100644 --- a/plugin_sa/game_sa/CTaskUtilityLineUpPedWithCar.h +++ b/plugin_sa/game_sa/CTaskUtilityLineUpPedWithCar.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskSimple.h" #include "CPed.h" diff --git a/plugin_sa/game_sa/CTheCarGenerators.cpp b/plugin_sa/game_sa/CTheCarGenerators.cpp index 17dff88bf..a3b944196 100644 --- a/plugin_sa/game_sa/CTheCarGenerators.cpp +++ b/plugin_sa/game_sa/CTheCarGenerators.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CTheCarGenerators.h" diff --git a/plugin_sa/game_sa/CTheCarGenerators.h b/plugin_sa/game_sa/CTheCarGenerators.h index 2b90560e8..1b5268592 100644 --- a/plugin_sa/game_sa/CTheCarGenerators.h +++ b/plugin_sa/game_sa/CTheCarGenerators.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CSpecialPlateHandler.h" #include "CCarGenerator.h" diff --git a/plugin_sa/game_sa/CTheScripts.cpp b/plugin_sa/game_sa/CTheScripts.cpp index e07195082..fe9095489 100644 --- a/plugin_sa/game_sa/CTheScripts.cpp +++ b/plugin_sa/game_sa/CTheScripts.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CTheScripts.h" diff --git a/plugin_sa/game_sa/CTimeCycle.h b/plugin_sa/game_sa/CTimeCycle.h index d9a31b03d..e8971ef6d 100644 --- a/plugin_sa/game_sa/CTimeCycle.h +++ b/plugin_sa/game_sa/CTimeCycle.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CColourSet.h" #include "CBox.h" diff --git a/plugin_sa/game_sa/CTimeCycleBox.h b/plugin_sa/game_sa/CTimeCycleBox.h index 4513f0c71..b31dec317 100644 --- a/plugin_sa/game_sa/CTimeCycleBox.h +++ b/plugin_sa/game_sa/CTimeCycleBox.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CBox.h" diff --git a/plugin_sa/game_sa/CTimer.h b/plugin_sa/game_sa/CTimer.h index 2021365ca..a8be14b0e 100644 --- a/plugin_sa/game_sa/CTimer.h +++ b/plugin_sa/game_sa/CTimer.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" class PLUGIN_API CTimer diff --git a/plugin_sa/game_sa/CTrailer.h b/plugin_sa/game_sa/CTrailer.h index 65eb29836..13f338c0a 100644 --- a/plugin_sa/game_sa/CTrailer.h +++ b/plugin_sa/game_sa/CTrailer.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CAutomobile.h" diff --git a/plugin_sa/game_sa/CTrainNode.h b/plugin_sa/game_sa/CTrainNode.h index 9f9e1b92b..f96e61421 100644 --- a/plugin_sa/game_sa/CTrainNode.h +++ b/plugin_sa/game_sa/CTrainNode.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" diff --git a/plugin_sa/game_sa/CTxdStore.h b/plugin_sa/game_sa/CTxdStore.h index fbc2cac15..d8e975176 100644 --- a/plugin_sa/game_sa/CTxdStore.h +++ b/plugin_sa/game_sa/CTxdStore.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "RenderWare.h" #include "TxdDef.h" diff --git a/plugin_sa/game_sa/CUpsideDownCarCheck.h b/plugin_sa/game_sa/CUpsideDownCarCheck.h index 0fab15e37..ab24db1e5 100644 --- a/plugin_sa/game_sa/CUpsideDownCarCheck.h +++ b/plugin_sa/game_sa/CUpsideDownCarCheck.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVehicle.h" diff --git a/plugin_sa/game_sa/CUserDisplay.h b/plugin_sa/game_sa/CUserDisplay.h index 3ecbbb5de..7c2625469 100644 --- a/plugin_sa/game_sa/CUserDisplay.h +++ b/plugin_sa/game_sa/CUserDisplay.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "COnscreenTimer.h" diff --git a/plugin_sa/game_sa/CWanted.h b/plugin_sa/game_sa/CWanted.h index fa1d421aa..cf26cf057 100644 --- a/plugin_sa/game_sa/CWanted.h +++ b/plugin_sa/game_sa/CWanted.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CCrimeBeingQd.h" #include "CAEPoliceScannerAudioEntity.h" diff --git a/plugin_sa/game_sa/CWeapon.h b/plugin_sa/game_sa/CWeapon.h index 342305774..5ad7043af 100644 --- a/plugin_sa/game_sa/CWeapon.h +++ b/plugin_sa/game_sa/CWeapon.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "eWeaponType.h" #include "FxSystem_c.h" diff --git a/plugin_sa/game_sa/CWeaponEffects.h b/plugin_sa/game_sa/CWeaponEffects.h index 54f06130b..b79fd9995 100644 --- a/plugin_sa/game_sa/CWeaponEffects.h +++ b/plugin_sa/game_sa/CWeaponEffects.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" #include "CRGBA.h" diff --git a/plugin_sa/game_sa/CWeaponInfo.h b/plugin_sa/game_sa/CWeaponInfo.h index 05465219b..85375df52 100644 --- a/plugin_sa/game_sa/CWeaponInfo.h +++ b/plugin_sa/game_sa/CWeaponInfo.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "eWeaponFlags.h" #include "eWeaponType.h" diff --git a/plugin_sa/game_sa/FxBox_c.h b/plugin_sa/game_sa/FxBox_c.h index 4e567a83a..4075315ea 100644 --- a/plugin_sa/game_sa/FxBox_c.h +++ b/plugin_sa/game_sa/FxBox_c.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "RenderWare.h" diff --git a/plugin_sa/game_sa/FxEmitterBP_c.h b/plugin_sa/game_sa/FxEmitterBP_c.h index a35551ff7..43d813318 100644 --- a/plugin_sa/game_sa/FxEmitterBP_c.h +++ b/plugin_sa/game_sa/FxEmitterBP_c.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "FxPrimBP_c.h" diff --git a/plugin_sa/game_sa/FxFrustumInfo_c.h b/plugin_sa/game_sa/FxFrustumInfo_c.h index b8215944a..1919f6d9b 100644 --- a/plugin_sa/game_sa/FxFrustumInfo_c.h +++ b/plugin_sa/game_sa/FxFrustumInfo_c.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "FxSphere_c.h" #include "FxPlane_c.h" diff --git a/plugin_sa/game_sa/FxInfoManager_c.h b/plugin_sa/game_sa/FxInfoManager_c.h index 8f13a1b2b..15df9059a 100644 --- a/plugin_sa/game_sa/FxInfoManager_c.h +++ b/plugin_sa/game_sa/FxInfoManager_c.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" class FxInfoManager_c { diff --git a/plugin_sa/game_sa/FxManager_c.h b/plugin_sa/game_sa/FxManager_c.h index 05731d20e..3da5dfecc 100644 --- a/plugin_sa/game_sa/FxManager_c.h +++ b/plugin_sa/game_sa/FxManager_c.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "RenderWare.h" #include "List_c.h" diff --git a/plugin_sa/game_sa/FxMemoryPool_c.h b/plugin_sa/game_sa/FxMemoryPool_c.h index 94f0e9d4a..0072f4051 100644 --- a/plugin_sa/game_sa/FxMemoryPool_c.h +++ b/plugin_sa/game_sa/FxMemoryPool_c.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "RenderWare.h" #include "CVector.h" diff --git a/plugin_sa/game_sa/FxPlane_c.h b/plugin_sa/game_sa/FxPlane_c.h index c48f0b2db..ef3ae118b 100644 --- a/plugin_sa/game_sa/FxPlane_c.h +++ b/plugin_sa/game_sa/FxPlane_c.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "RenderWare.h" diff --git a/plugin_sa/game_sa/FxPrimBP_c.h b/plugin_sa/game_sa/FxPrimBP_c.h index c0ba9387a..7d2a7a14e 100644 --- a/plugin_sa/game_sa/FxPrimBP_c.h +++ b/plugin_sa/game_sa/FxPrimBP_c.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "RenderWare.h" #include "List_c.h" diff --git a/plugin_sa/game_sa/FxSphere_c.h b/plugin_sa/game_sa/FxSphere_c.h index 5e0eebeaf..c9c327faf 100644 --- a/plugin_sa/game_sa/FxSphere_c.h +++ b/plugin_sa/game_sa/FxSphere_c.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "FxPlane_c.h" diff --git a/plugin_sa/game_sa/Fx_c.h b/plugin_sa/game_sa/Fx_c.h index 6280e998a..4fcd70ce4 100644 --- a/plugin_sa/game_sa/Fx_c.h +++ b/plugin_sa/game_sa/Fx_c.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "RenderWare.h" #include "FxManager_c.h" diff --git a/plugin_sa/game_sa/IplDef.h b/plugin_sa/game_sa/IplDef.h index fe19c9c8c..a1fd41a9d 100644 --- a/plugin_sa/game_sa/IplDef.h +++ b/plugin_sa/game_sa/IplDef.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CRect.h" diff --git a/plugin_sa/game_sa/JPegCompress.h b/plugin_sa/game_sa/JPegCompress.h index cc269c2eb..d64acdcbc 100644 --- a/plugin_sa/game_sa/JPegCompress.h +++ b/plugin_sa/game_sa/JPegCompress.h @@ -4,7 +4,6 @@ https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! */ - #pragma once #include "PluginBase.h" #include "RenderWare.h" diff --git a/plugin_sa/game_sa/ListItem_c.h b/plugin_sa/game_sa/ListItem_c.h index 56ef3436f..75137c090 100644 --- a/plugin_sa/game_sa/ListItem_c.h +++ b/plugin_sa/game_sa/ListItem_c.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" /** diff --git a/plugin_sa/game_sa/List_c.h b/plugin_sa/game_sa/List_c.h index 13f9746a2..7263b4a3e 100644 --- a/plugin_sa/game_sa/List_c.h +++ b/plugin_sa/game_sa/List_c.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "ListItem_c.h" diff --git a/plugin_sa/game_sa/RpHAnimBlendInterpFrame.h b/plugin_sa/game_sa/RpHAnimBlendInterpFrame.h index 432aaa50e..50e8951b6 100644 --- a/plugin_sa/game_sa/RpHAnimBlendInterpFrame.h +++ b/plugin_sa/game_sa/RpHAnimBlendInterpFrame.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "RenderWare.h" diff --git a/plugin_sa/game_sa/SArray.h b/plugin_sa/game_sa/SArray.h index c52b1d2d9..0ae14f792 100644 --- a/plugin_sa/game_sa/SArray.h +++ b/plugin_sa/game_sa/SArray.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" template diff --git a/plugin_sa/game_sa/TxdDef.h b/plugin_sa/game_sa/TxdDef.h index 25f2261c0..6c36e81f4 100644 --- a/plugin_sa/game_sa/TxdDef.h +++ b/plugin_sa/game_sa/TxdDef.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "RenderWare.h" diff --git a/plugin_sa/game_sa/cHandlingDataMgr.h b/plugin_sa/game_sa/cHandlingDataMgr.h index 9dc629873..594e2b8a4 100644 --- a/plugin_sa/game_sa/cHandlingDataMgr.h +++ b/plugin_sa/game_sa/cHandlingDataMgr.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "tHandlingData.h" #include "tBikeHandlingData.h" diff --git a/plugin_sa/game_sa/cTransmission.h b/plugin_sa/game_sa/cTransmission.h index c3d631466..be5d6205e 100644 --- a/plugin_sa/game_sa/cTransmission.h +++ b/plugin_sa/game_sa/cTransmission.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "tTransmissionGear.h" diff --git a/plugin_sa/game_sa/tBikeHandlingData.h b/plugin_sa/game_sa/tBikeHandlingData.h index 6337a20a4..94b6d5251 100644 --- a/plugin_sa/game_sa/tBikeHandlingData.h +++ b/plugin_sa/game_sa/tBikeHandlingData.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" struct PLUGIN_API tBikeHandlingData { diff --git a/plugin_sa/game_sa/tBinaryIplFile.h b/plugin_sa/game_sa/tBinaryIplFile.h index 5894e7bd6..4c340eef3 100644 --- a/plugin_sa/game_sa/tBinaryIplFile.h +++ b/plugin_sa/game_sa/tBinaryIplFile.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CFileObjectInstance.h" diff --git a/plugin_sa/game_sa/tBoatHandlingData.h b/plugin_sa/game_sa/tBoatHandlingData.h index 6f4071394..7ea47ca82 100644 --- a/plugin_sa/game_sa/tBoatHandlingData.h +++ b/plugin_sa/game_sa/tBoatHandlingData.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" diff --git a/plugin_sa/game_sa/tFlyingHandlingData.h b/plugin_sa/game_sa/tFlyingHandlingData.h index 5e3676878..5bfef4b03 100644 --- a/plugin_sa/game_sa/tFlyingHandlingData.h +++ b/plugin_sa/game_sa/tFlyingHandlingData.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" diff --git a/plugin_sa/game_sa/tHandlingData.h b/plugin_sa/game_sa/tHandlingData.h index f5366321f..5cfb96b60 100644 --- a/plugin_sa/game_sa/tHandlingData.h +++ b/plugin_sa/game_sa/tHandlingData.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "cTransmission.h" #include "CVector.h" diff --git a/plugin_sa/game_sa/tTransmissionGear.h b/plugin_sa/game_sa/tTransmissionGear.h index fca20f09e..11bc68d01 100644 --- a/plugin_sa/game_sa/tTransmissionGear.h +++ b/plugin_sa/game_sa/tTransmissionGear.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" struct PLUGIN_API tTransmissionGear diff --git a/plugin_sa/plugin_sa.h b/plugin_sa/plugin_sa.h index 1ecf8a623..3890045c0 100644 --- a/plugin_sa/plugin_sa.h +++ b/plugin_sa/plugin_sa.h @@ -5,5 +5,4 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "plugin.h" diff --git a/plugin_sa_unreal/plugin_sa_unreal.h b/plugin_sa_unreal/plugin_sa_unreal.h index ecbc1f39b..05c3dc095 100644 --- a/plugin_sa_unreal/plugin_sa_unreal.h +++ b/plugin_sa_unreal/plugin_sa_unreal.h @@ -5,5 +5,4 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "plugin.h" diff --git a/plugin_vc/game_vc/AnimAssociationData.h b/plugin_vc/game_vc/AnimAssociationData.h index 2075cc44c..636d1c45d 100644 --- a/plugin_vc/game_vc/AnimAssociationData.h +++ b/plugin_vc/game_vc/AnimAssociationData.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "RenderWare.h" diff --git a/plugin_vc/game_vc/AnimBlendFrameData.h b/plugin_vc/game_vc/AnimBlendFrameData.h index 7be305419..dc4e556d2 100644 --- a/plugin_vc/game_vc/AnimBlendFrameData.h +++ b/plugin_vc/game_vc/AnimBlendFrameData.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" diff --git a/plugin_vc/game_vc/C3dMarker.h b/plugin_vc/game_vc/C3dMarker.h index e4b754a02..7c0112ece 100644 --- a/plugin_vc/game_vc/C3dMarker.h +++ b/plugin_vc/game_vc/C3dMarker.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CMatrix.h" #include "CRGBA.h" diff --git a/plugin_vc/game_vc/C3dMarkers.h b/plugin_vc/game_vc/C3dMarkers.h index 9739d7a94..755596fa3 100644 --- a/plugin_vc/game_vc/C3dMarkers.h +++ b/plugin_vc/game_vc/C3dMarkers.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "C3dMarker.h" #include "RenderWare.h" diff --git a/plugin_vc/game_vc/CAnimBlendAssociation.h b/plugin_vc/game_vc/CAnimBlendAssociation.h index 06238b896..01022179a 100644 --- a/plugin_vc/game_vc/CAnimBlendAssociation.h +++ b/plugin_vc/game_vc/CAnimBlendAssociation.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "AnimAssociationData.h" #include "eAnimBlendCallbackType.h" diff --git a/plugin_vc/game_vc/CAnimBlendClumpData.h b/plugin_vc/game_vc/CAnimBlendClumpData.h index fbed041e7..a6f48fb7e 100644 --- a/plugin_vc/game_vc/CAnimBlendClumpData.h +++ b/plugin_vc/game_vc/CAnimBlendClumpData.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "RenderWare.h" #include "CVector.h" diff --git a/plugin_vc/game_vc/CAnimBlock.h b/plugin_vc/game_vc/CAnimBlock.h index fc0c4d8e6..ede867bbd 100644 --- a/plugin_vc/game_vc/CAnimBlock.h +++ b/plugin_vc/game_vc/CAnimBlock.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" class PLUGIN_API CAnimBlock { diff --git a/plugin_vc/game_vc/CAnimManager.h b/plugin_vc/game_vc/CAnimManager.h index 657af7ea4..8277a81ba 100644 --- a/plugin_vc/game_vc/CAnimManager.h +++ b/plugin_vc/game_vc/CAnimManager.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CAnimationStyleDescriptor.h" #include "CAnimBlendAssocGroup.h" diff --git a/plugin_vc/game_vc/CAnimationStyleDescriptor.h b/plugin_vc/game_vc/CAnimationStyleDescriptor.h index b50676c5b..4d08f0174 100644 --- a/plugin_vc/game_vc/CAnimationStyleDescriptor.h +++ b/plugin_vc/game_vc/CAnimationStyleDescriptor.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" class PLUGIN_API CAnimationStyleDescriptor { diff --git a/plugin_vc/game_vc/CAutoPilot.h b/plugin_vc/game_vc/CAutoPilot.h index 5df2715d3..46ddd7743 100644 --- a/plugin_vc/game_vc/CAutoPilot.h +++ b/plugin_vc/game_vc/CAutoPilot.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CPathFind.h" #include "CPathNode.h" diff --git a/plugin_vc/game_vc/CAutomobile.cpp b/plugin_vc/game_vc/CAutomobile.cpp index 785c23300..a719a0643 100644 --- a/plugin_vc/game_vc/CAutomobile.cpp +++ b/plugin_vc/game_vc/CAutomobile.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CAutomobile.h" diff --git a/plugin_vc/game_vc/CAutomobile.h b/plugin_vc/game_vc/CAutomobile.h index 1a427f1f9..7fd8dd559 100644 --- a/plugin_vc/game_vc/CAutomobile.h +++ b/plugin_vc/game_vc/CAutomobile.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVehicle.h" #include "CDoor.h" diff --git a/plugin_vc/game_vc/CBike.cpp b/plugin_vc/game_vc/CBike.cpp index 390120e2c..e5de63690 100644 --- a/plugin_vc/game_vc/CBike.cpp +++ b/plugin_vc/game_vc/CBike.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CBike.h" diff --git a/plugin_vc/game_vc/CBike.h b/plugin_vc/game_vc/CBike.h index 7219e31ea..d367fc803 100644 --- a/plugin_vc/game_vc/CBike.h +++ b/plugin_vc/game_vc/CBike.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once #include "PluginBase.h" diff --git a/plugin_vc/game_vc/CBoat.cpp b/plugin_vc/game_vc/CBoat.cpp index 29c7c9e9e..a4bdb8022 100644 --- a/plugin_vc/game_vc/CBoat.cpp +++ b/plugin_vc/game_vc/CBoat.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CBoat.h" diff --git a/plugin_vc/game_vc/CBoat.h b/plugin_vc/game_vc/CBoat.h index ec40687b0..ee649011f 100644 --- a/plugin_vc/game_vc/CBoat.h +++ b/plugin_vc/game_vc/CBoat.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once #include "PluginBase.h" diff --git a/plugin_vc/game_vc/CBox.cpp b/plugin_vc/game_vc/CBox.cpp index 9b8f4370f..6f2173e56 100644 --- a/plugin_vc/game_vc/CBox.cpp +++ b/plugin_vc/game_vc/CBox.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CBox.h" diff --git a/plugin_vc/game_vc/CBox.h b/plugin_vc/game_vc/CBox.h index 4b38b09d2..21afe810e 100644 --- a/plugin_vc/game_vc/CBox.h +++ b/plugin_vc/game_vc/CBox.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" diff --git a/plugin_vc/game_vc/CBrightLights.h b/plugin_vc/game_vc/CBrightLights.h index 0de05ac84..6e789e14c 100644 --- a/plugin_vc/game_vc/CBrightLights.h +++ b/plugin_vc/game_vc/CBrightLights.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" diff --git a/plugin_vc/game_vc/CBuilding.h b/plugin_vc/game_vc/CBuilding.h index 3d26d62c4..8ead463ea 100644 --- a/plugin_vc/game_vc/CBuilding.h +++ b/plugin_vc/game_vc/CBuilding.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CEntity.h" diff --git a/plugin_vc/game_vc/CBulletInfo.h b/plugin_vc/game_vc/CBulletInfo.h index ed72fbc38..8f4ff2cfe 100644 --- a/plugin_vc/game_vc/CBulletInfo.h +++ b/plugin_vc/game_vc/CBulletInfo.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" #include "eWeaponType.h" diff --git a/plugin_vc/game_vc/CBulletTrace.h b/plugin_vc/game_vc/CBulletTrace.h index c37374026..e4aad2c66 100644 --- a/plugin_vc/game_vc/CBulletTrace.h +++ b/plugin_vc/game_vc/CBulletTrace.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" #include "RenderWare.h" diff --git a/plugin_vc/game_vc/CBulletTraces.h b/plugin_vc/game_vc/CBulletTraces.h index d7b451bf4..27f9da407 100644 --- a/plugin_vc/game_vc/CBulletTraces.h +++ b/plugin_vc/game_vc/CBulletTraces.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CEntity.h" #include "CBulletTrace.h" diff --git a/plugin_vc/game_vc/CCam.h b/plugin_vc/game_vc/CCam.h index 5f7a7baf5..259a23bb2 100644 --- a/plugin_vc/game_vc/CCam.h +++ b/plugin_vc/game_vc/CCam.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CPed.h" #include "CAutomobile.h" diff --git a/plugin_vc/game_vc/CCamera.h b/plugin_vc/game_vc/CCamera.h index f40b223cc..12d8e1526 100644 --- a/plugin_vc/game_vc/CCamera.h +++ b/plugin_vc/game_vc/CCamera.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CPlaceable.h" #include "tCamPathSplines.h" diff --git a/plugin_vc/game_vc/CCarAI.h b/plugin_vc/game_vc/CCarAI.h index 1eed381ec..eb0be5ed6 100644 --- a/plugin_vc/game_vc/CCarAI.h +++ b/plugin_vc/game_vc/CCarAI.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVehicle.h" #include "eCarMission.h" diff --git a/plugin_vc/game_vc/CCarCtrl.cpp b/plugin_vc/game_vc/CCarCtrl.cpp index 3be9a8f9b..f64fdcb3b 100644 --- a/plugin_vc/game_vc/CCarCtrl.cpp +++ b/plugin_vc/game_vc/CCarCtrl.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CCarCtrl.h" diff --git a/plugin_vc/game_vc/CCarCtrl.h b/plugin_vc/game_vc/CCarCtrl.h index 25e2d4df0..dcff13370 100644 --- a/plugin_vc/game_vc/CCarCtrl.h +++ b/plugin_vc/game_vc/CCarCtrl.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once #include "PluginBase.h" diff --git a/plugin_vc/game_vc/CCarGenerator.cpp b/plugin_vc/game_vc/CCarGenerator.cpp index 0a4194ad2..905fc38bd 100644 --- a/plugin_vc/game_vc/CCarGenerator.cpp +++ b/plugin_vc/game_vc/CCarGenerator.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CCarGenerator.h" diff --git a/plugin_vc/game_vc/CCarGenerator.h b/plugin_vc/game_vc/CCarGenerator.h index 99f2b2a85..467c5478d 100644 --- a/plugin_vc/game_vc/CCarGenerator.h +++ b/plugin_vc/game_vc/CCarGenerator.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once #include "PluginBase.h" diff --git a/plugin_vc/game_vc/CCivilianPed.cpp b/plugin_vc/game_vc/CCivilianPed.cpp index 208b6dcee..aa55f65f5 100644 --- a/plugin_vc/game_vc/CCivilianPed.cpp +++ b/plugin_vc/game_vc/CCivilianPed.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CCivilianPed.h" diff --git a/plugin_vc/game_vc/CCivilianPed.h b/plugin_vc/game_vc/CCivilianPed.h index c608e1704..d44ffb03c 100644 --- a/plugin_vc/game_vc/CCivilianPed.h +++ b/plugin_vc/game_vc/CCivilianPed.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CPed.h" #include "ePedType.h" diff --git a/plugin_vc/game_vc/CClock.h b/plugin_vc/game_vc/CClock.h index 6b7560fb6..e8a302c75 100644 --- a/plugin_vc/game_vc/CClock.h +++ b/plugin_vc/game_vc/CClock.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" class PLUGIN_API CClock { diff --git a/plugin_vc/game_vc/CClouds.cpp b/plugin_vc/game_vc/CClouds.cpp index 1f57e750a..9e51072d7 100644 --- a/plugin_vc/game_vc/CClouds.cpp +++ b/plugin_vc/game_vc/CClouds.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CClouds.h" diff --git a/plugin_vc/game_vc/CClouds.h b/plugin_vc/game_vc/CClouds.h index ca8eea253..d2be54deb 100644 --- a/plugin_vc/game_vc/CClouds.h +++ b/plugin_vc/game_vc/CClouds.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once #include "PluginBase.h" diff --git a/plugin_vc/game_vc/CClumpModelInfo.cpp b/plugin_vc/game_vc/CClumpModelInfo.cpp index b179a22ca..214f3051f 100644 --- a/plugin_vc/game_vc/CClumpModelInfo.cpp +++ b/plugin_vc/game_vc/CClumpModelInfo.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CClumpModelInfo.h" diff --git a/plugin_vc/game_vc/CClumpModelInfo.h b/plugin_vc/game_vc/CClumpModelInfo.h index 430ba35da..7394f2a8d 100644 --- a/plugin_vc/game_vc/CClumpModelInfo.h +++ b/plugin_vc/game_vc/CClumpModelInfo.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CBaseModelInfo.h" #include "RenderWare.h" diff --git a/plugin_vc/game_vc/CColBox.cpp b/plugin_vc/game_vc/CColBox.cpp index c6a2d85b2..7ae100a80 100644 --- a/plugin_vc/game_vc/CColBox.cpp +++ b/plugin_vc/game_vc/CColBox.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CColBox.h" diff --git a/plugin_vc/game_vc/CColBox.h b/plugin_vc/game_vc/CColBox.h index 4d62d9c23..67cc54a88 100644 --- a/plugin_vc/game_vc/CColBox.h +++ b/plugin_vc/game_vc/CColBox.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CBox.h" diff --git a/plugin_vc/game_vc/CColLine.cpp b/plugin_vc/game_vc/CColLine.cpp index 97d7b67ef..67e6c9197 100644 --- a/plugin_vc/game_vc/CColLine.cpp +++ b/plugin_vc/game_vc/CColLine.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CColLine.h" diff --git a/plugin_vc/game_vc/CColLine.h b/plugin_vc/game_vc/CColLine.h index 1cde37741..2f02ab8bd 100644 --- a/plugin_vc/game_vc/CColLine.h +++ b/plugin_vc/game_vc/CColLine.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" diff --git a/plugin_vc/game_vc/CColModel.cpp b/plugin_vc/game_vc/CColModel.cpp index 7e0e8e287..fe6b17bd0 100644 --- a/plugin_vc/game_vc/CColModel.cpp +++ b/plugin_vc/game_vc/CColModel.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CColModel.h" diff --git a/plugin_vc/game_vc/CColModel.h b/plugin_vc/game_vc/CColModel.h index 17b380211..bc8d65b30 100644 --- a/plugin_vc/game_vc/CColModel.h +++ b/plugin_vc/game_vc/CColModel.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_vc/game_vc/CColPoint.h b/plugin_vc/game_vc/CColPoint.h index 85efb0460..65d219fe7 100644 --- a/plugin_vc/game_vc/CColPoint.h +++ b/plugin_vc/game_vc/CColPoint.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" diff --git a/plugin_vc/game_vc/CColSphere.cpp b/plugin_vc/game_vc/CColSphere.cpp index 53652200b..a2e3fc9ca 100644 --- a/plugin_vc/game_vc/CColSphere.cpp +++ b/plugin_vc/game_vc/CColSphere.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CColSphere.h" diff --git a/plugin_vc/game_vc/CColSphere.h b/plugin_vc/game_vc/CColSphere.h index 56ec54e65..59bad58d8 100644 --- a/plugin_vc/game_vc/CColSphere.h +++ b/plugin_vc/game_vc/CColSphere.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CSphere.h" diff --git a/plugin_vc/game_vc/CControllerState.h b/plugin_vc/game_vc/CControllerState.h index f1897c4fe..fb28153c8 100644 --- a/plugin_vc/game_vc/CControllerState.h +++ b/plugin_vc/game_vc/CControllerState.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #pragma pack(push, 1) diff --git a/plugin_vc/game_vc/CCopPed.cpp b/plugin_vc/game_vc/CCopPed.cpp index 9e48476d4..1dbacb8df 100644 --- a/plugin_vc/game_vc/CCopPed.cpp +++ b/plugin_vc/game_vc/CCopPed.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CCopPed.h" diff --git a/plugin_vc/game_vc/CCopPed.h b/plugin_vc/game_vc/CCopPed.h index 77b43ffbe..da4249282 100644 --- a/plugin_vc/game_vc/CCopPed.h +++ b/plugin_vc/game_vc/CCopPed.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CPed.h" #include "eCopType.h" diff --git a/plugin_vc/game_vc/CCoronas.h b/plugin_vc/game_vc/CCoronas.h index 3f3150e58..92e10cfb3 100644 --- a/plugin_vc/game_vc/CCoronas.h +++ b/plugin_vc/game_vc/CCoronas.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" diff --git a/plugin_vc/game_vc/CCrane.h b/plugin_vc/game_vc/CCrane.h index 9d16bbb9e..f7f78f530 100644 --- a/plugin_vc/game_vc/CCrane.h +++ b/plugin_vc/game_vc/CCrane.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" class PLUGIN_API CCrane { diff --git a/plugin_vc/game_vc/CCranes.h b/plugin_vc/game_vc/CCranes.h index 52faff387..6efe62fa6 100644 --- a/plugin_vc/game_vc/CCranes.h +++ b/plugin_vc/game_vc/CCranes.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVehicle.h" #include "CEntity.h" diff --git a/plugin_vc/game_vc/CCurrentVehicle.h b/plugin_vc/game_vc/CCurrentVehicle.h index bc4729744..bf31efb49 100644 --- a/plugin_vc/game_vc/CCurrentVehicle.h +++ b/plugin_vc/game_vc/CCurrentVehicle.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" class CCurrentVehicle diff --git a/plugin_vc/game_vc/CCutsceneObject.h b/plugin_vc/game_vc/CCutsceneObject.h index a4e4e8b4d..163bc78a1 100644 --- a/plugin_vc/game_vc/CCutsceneObject.h +++ b/plugin_vc/game_vc/CCutsceneObject.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CObject.h" #include "CCutsceneShadow.h" diff --git a/plugin_vc/game_vc/CCutsceneShadow.h b/plugin_vc/game_vc/CCutsceneShadow.h index a873918a9..48c644a9a 100644 --- a/plugin_vc/game_vc/CCutsceneShadow.h +++ b/plugin_vc/game_vc/CCutsceneShadow.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CShadowCamera.h" #include "RenderWare.h" diff --git a/plugin_vc/game_vc/CDamageManager.cpp b/plugin_vc/game_vc/CDamageManager.cpp index b33765027..6b9e8c9af 100644 --- a/plugin_vc/game_vc/CDamageManager.cpp +++ b/plugin_vc/game_vc/CDamageManager.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CDamageManager.h" diff --git a/plugin_vc/game_vc/CDamageManager.h b/plugin_vc/game_vc/CDamageManager.h index 0b8c882fd..c0150bbd7 100644 --- a/plugin_vc/game_vc/CDamageManager.h +++ b/plugin_vc/game_vc/CDamageManager.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once #include "PluginBase.h" diff --git a/plugin_vc/game_vc/CDarkel.cpp b/plugin_vc/game_vc/CDarkel.cpp index f92d0b62a..758ae5546 100644 --- a/plugin_vc/game_vc/CDarkel.cpp +++ b/plugin_vc/game_vc/CDarkel.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CDarkel.h" diff --git a/plugin_vc/game_vc/CDarkel.h b/plugin_vc/game_vc/CDarkel.h index f3e1652b2..cdb990fa7 100644 --- a/plugin_vc/game_vc/CDarkel.h +++ b/plugin_vc/game_vc/CDarkel.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once #include "PluginBase.h" diff --git a/plugin_vc/game_vc/CDirectory.h b/plugin_vc/game_vc/CDirectory.h index 9e79aa7a8..85041aac4 100644 --- a/plugin_vc/game_vc/CDirectory.h +++ b/plugin_vc/game_vc/CDirectory.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" diff --git a/plugin_vc/game_vc/CDoor.cpp b/plugin_vc/game_vc/CDoor.cpp index 60b9a9edd..92d3bac2f 100644 --- a/plugin_vc/game_vc/CDoor.cpp +++ b/plugin_vc/game_vc/CDoor.cpp @@ -1,7 +1,7 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CDoor.h" \ No newline at end of file diff --git a/plugin_vc/game_vc/CDoor.h b/plugin_vc/game_vc/CDoor.h index b55c01c4c..b7211d0f4 100644 --- a/plugin_vc/game_vc/CDoor.h +++ b/plugin_vc/game_vc/CDoor.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" diff --git a/plugin_vc/game_vc/CDraw.cpp b/plugin_vc/game_vc/CDraw.cpp index cf9889742..0d94be92a 100644 --- a/plugin_vc/game_vc/CDraw.cpp +++ b/plugin_vc/game_vc/CDraw.cpp @@ -4,7 +4,6 @@ https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! */ - #include "CDraw.h" // variables diff --git a/plugin_vc/game_vc/CDraw.h b/plugin_vc/game_vc/CDraw.h index 75b01c6be..4cf448268 100644 --- a/plugin_vc/game_vc/CDraw.h +++ b/plugin_vc/game_vc/CDraw.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" class CDraw diff --git a/plugin_vc/game_vc/CDummy.h b/plugin_vc/game_vc/CDummy.h index a782f96d6..46fad53ea 100644 --- a/plugin_vc/game_vc/CDummy.h +++ b/plugin_vc/game_vc/CDummy.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CEntity.h" #include "CEntryInfoList.h" diff --git a/plugin_vc/game_vc/CDummyObject.h b/plugin_vc/game_vc/CDummyObject.h index d91dc94ad..0c44115cf 100644 --- a/plugin_vc/game_vc/CDummyObject.h +++ b/plugin_vc/game_vc/CDummyObject.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CDummy.h" diff --git a/plugin_vc/game_vc/CEmergencyPed.cpp b/plugin_vc/game_vc/CEmergencyPed.cpp index bca4fce8b..2f3e285bd 100644 --- a/plugin_vc/game_vc/CEmergencyPed.cpp +++ b/plugin_vc/game_vc/CEmergencyPed.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CEmergencyPed.h" diff --git a/plugin_vc/game_vc/CEmergencyPed.h b/plugin_vc/game_vc/CEmergencyPed.h index 8da2951e9..7e7d491d1 100644 --- a/plugin_vc/game_vc/CEmergencyPed.h +++ b/plugin_vc/game_vc/CEmergencyPed.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CPed.h" diff --git a/plugin_vc/game_vc/CEntity.cpp b/plugin_vc/game_vc/CEntity.cpp index b78c5151b..87a5e5930 100644 --- a/plugin_vc/game_vc/CEntity.cpp +++ b/plugin_vc/game_vc/CEntity.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CEntity.h" diff --git a/plugin_vc/game_vc/CEntryInfoList.h b/plugin_vc/game_vc/CEntryInfoList.h index d5a4f5c02..3229d8b4f 100644 --- a/plugin_vc/game_vc/CEntryInfoList.h +++ b/plugin_vc/game_vc/CEntryInfoList.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CEntryInfoNode.h" diff --git a/plugin_vc/game_vc/CEntryInfoNode.h b/plugin_vc/game_vc/CEntryInfoNode.h index c937d0ba4..d7b8b9b97 100644 --- a/plugin_vc/game_vc/CEntryInfoNode.h +++ b/plugin_vc/game_vc/CEntryInfoNode.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CSector.h" diff --git a/plugin_vc/game_vc/CEscalators.cpp b/plugin_vc/game_vc/CEscalators.cpp index ce6a6fc61..ea6027ebf 100644 --- a/plugin_vc/game_vc/CEscalators.cpp +++ b/plugin_vc/game_vc/CEscalators.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CEscalators.h" diff --git a/plugin_vc/game_vc/CEscalators.h b/plugin_vc/game_vc/CEscalators.h index 560e8e0bd..9647b5158 100644 --- a/plugin_vc/game_vc/CEscalators.h +++ b/plugin_vc/game_vc/CEscalators.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once #include "PluginBase.h" diff --git a/plugin_vc/game_vc/CFileLoader.h b/plugin_vc/game_vc/CFileLoader.h index 703ef17a8..0246156d7 100644 --- a/plugin_vc/game_vc/CFileLoader.h +++ b/plugin_vc/game_vc/CFileLoader.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CColModel.h" #include "RenderWare.h" diff --git a/plugin_vc/game_vc/CFire.h b/plugin_vc/game_vc/CFire.h index d70ac0c9b..2cb4b142b 100644 --- a/plugin_vc/game_vc/CFire.h +++ b/plugin_vc/game_vc/CFire.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CEntity.h" diff --git a/plugin_vc/game_vc/CFireManager.h b/plugin_vc/game_vc/CFireManager.h index 4f0187ada..1b6741adf 100644 --- a/plugin_vc/game_vc/CFireManager.h +++ b/plugin_vc/game_vc/CFireManager.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CFire.h" diff --git a/plugin_vc/game_vc/CFont.h b/plugin_vc/game_vc/CFont.h index f4ae9ef3c..cd59be1a9 100644 --- a/plugin_vc/game_vc/CFont.h +++ b/plugin_vc/game_vc/CFont.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CRGBA.h" #include "CRect.h" diff --git a/plugin_vc/game_vc/CFontDetails.h b/plugin_vc/game_vc/CFontDetails.h index 0eee01714..4a9b91746 100644 --- a/plugin_vc/game_vc/CFontDetails.h +++ b/plugin_vc/game_vc/CFontDetails.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CRGBA.h" #include "CVector2D.h" diff --git a/plugin_vc/game_vc/CGame.h b/plugin_vc/game_vc/CGame.h index 21756b690..ba52e4d1b 100644 --- a/plugin_vc/game_vc/CGame.h +++ b/plugin_vc/game_vc/CGame.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "RenderWare.h" #include "CSprite2d.h" diff --git a/plugin_vc/game_vc/CGameLogic.h b/plugin_vc/game_vc/CGameLogic.h index 77eb3a5e0..807008df8 100644 --- a/plugin_vc/game_vc/CGameLogic.h +++ b/plugin_vc/game_vc/CGameLogic.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CPlayerPed.h" diff --git a/plugin_vc/game_vc/CGangs.cpp b/plugin_vc/game_vc/CGangs.cpp index 378825da2..5f71812b2 100644 --- a/plugin_vc/game_vc/CGangs.cpp +++ b/plugin_vc/game_vc/CGangs.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CGangs.h" diff --git a/plugin_vc/game_vc/CGangs.h b/plugin_vc/game_vc/CGangs.h index bc5aacecb..eb2d52cb0 100644 --- a/plugin_vc/game_vc/CGangs.h +++ b/plugin_vc/game_vc/CGangs.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CPed.h" #include "CObject.h" diff --git a/plugin_vc/game_vc/CGeneral.h b/plugin_vc/game_vc/CGeneral.h index c0ee137c5..fdb9296f1 100644 --- a/plugin_vc/game_vc/CGeneral.h +++ b/plugin_vc/game_vc/CGeneral.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" class PLUGIN_API CGeneral { diff --git a/plugin_vc/game_vc/CHeli.cpp b/plugin_vc/game_vc/CHeli.cpp index 1a752e5e1..657c4d196 100644 --- a/plugin_vc/game_vc/CHeli.cpp +++ b/plugin_vc/game_vc/CHeli.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CHeli.h" diff --git a/plugin_vc/game_vc/CHeli.h b/plugin_vc/game_vc/CHeli.h index 3fbc8215c..72bf40efe 100644 --- a/plugin_vc/game_vc/CHeli.h +++ b/plugin_vc/game_vc/CHeli.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVehicle.h" #include "CObject.h" diff --git a/plugin_vc/game_vc/CHud.h b/plugin_vc/game_vc/CHud.h index a45541dcb..85174e1fa 100644 --- a/plugin_vc/game_vc/CHud.h +++ b/plugin_vc/game_vc/CHud.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "DRAW_FADE_STATE.h" #include "CSprite2d.h" diff --git a/plugin_vc/game_vc/CIniFile.cpp b/plugin_vc/game_vc/CIniFile.cpp index caca2ab62..640da8751 100644 --- a/plugin_vc/game_vc/CIniFile.cpp +++ b/plugin_vc/game_vc/CIniFile.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CIniFile.h" diff --git a/plugin_vc/game_vc/CIniFile.h b/plugin_vc/game_vc/CIniFile.h index 7e5845b62..f1792f7de 100644 --- a/plugin_vc/game_vc/CIniFile.h +++ b/plugin_vc/game_vc/CIniFile.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" class CIniFile { diff --git a/plugin_vc/game_vc/CKeyboardState.h b/plugin_vc/game_vc/CKeyboardState.h index ba6a93127..69ea52726 100644 --- a/plugin_vc/game_vc/CKeyboardState.h +++ b/plugin_vc/game_vc/CKeyboardState.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" class PLUGIN_API CKeyboardState { diff --git a/plugin_vc/game_vc/CLink.h b/plugin_vc/game_vc/CLink.h index eaaa0ee32..767ed8da7 100644 --- a/plugin_vc/game_vc/CLink.h +++ b/plugin_vc/game_vc/CLink.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" template diff --git a/plugin_vc/game_vc/CLinkList.h b/plugin_vc/game_vc/CLinkList.h index cb06b357b..e96265d44 100644 --- a/plugin_vc/game_vc/CLinkList.h +++ b/plugin_vc/game_vc/CLinkList.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CLink.h" diff --git a/plugin_vc/game_vc/CMatrix.h b/plugin_vc/game_vc/CMatrix.h index 615a14289..f8192437d 100644 --- a/plugin_vc/game_vc/CMatrix.h +++ b/plugin_vc/game_vc/CMatrix.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_vc/game_vc/CMessages.h b/plugin_vc/game_vc/CMessages.h index 1b7258c7e..71e058a8a 100644 --- a/plugin_vc/game_vc/CMessages.h +++ b/plugin_vc/game_vc/CMessages.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" class CMessages { diff --git a/plugin_vc/game_vc/CModelInfo.cpp b/plugin_vc/game_vc/CModelInfo.cpp index b6e6f442c..4868bfec9 100644 --- a/plugin_vc/game_vc/CModelInfo.cpp +++ b/plugin_vc/game_vc/CModelInfo.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CModelInfo.h" diff --git a/plugin_vc/game_vc/CMotionBlurStreaks.h b/plugin_vc/game_vc/CMotionBlurStreaks.h index bdfc8b5b9..c410acfdb 100644 --- a/plugin_vc/game_vc/CMotionBlurStreaks.h +++ b/plugin_vc/game_vc/CMotionBlurStreaks.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CRegisteredMotionBlurStreak.h" diff --git a/plugin_vc/game_vc/CMouseControllerState.h b/plugin_vc/game_vc/CMouseControllerState.h index c8be7891d..03824dc79 100644 --- a/plugin_vc/game_vc/CMouseControllerState.h +++ b/plugin_vc/game_vc/CMouseControllerState.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" class PLUGIN_API CMouseControllerState { diff --git a/plugin_vc/game_vc/CMousePointerStateHelper.h b/plugin_vc/game_vc/CMousePointerStateHelper.h index acf78ef1e..15d022b1c 100644 --- a/plugin_vc/game_vc/CMousePointerStateHelper.h +++ b/plugin_vc/game_vc/CMousePointerStateHelper.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CMouseControllerState.h" diff --git a/plugin_vc/game_vc/CMovie.h b/plugin_vc/game_vc/CMovie.h index 4c652f3fd..51dad61ae 100644 --- a/plugin_vc/game_vc/CMovie.h +++ b/plugin_vc/game_vc/CMovie.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" diff --git a/plugin_vc/game_vc/CObject.h b/plugin_vc/game_vc/CObject.h index 59a717516..30983db2c 100644 --- a/plugin_vc/game_vc/CObject.h +++ b/plugin_vc/game_vc/CObject.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CPhysical.h" #include "CDummyObject.h" diff --git a/plugin_vc/game_vc/COcclusion.h b/plugin_vc/game_vc/COcclusion.h index be4c55afd..f2bd8ff0f 100644 --- a/plugin_vc/game_vc/COcclusion.h +++ b/plugin_vc/game_vc/COcclusion.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector2D.h" #include "CVector.h" diff --git a/plugin_vc/game_vc/COneSheet.h b/plugin_vc/game_vc/COneSheet.h index 597a2b51f..2e5c3930e 100644 --- a/plugin_vc/game_vc/COneSheet.h +++ b/plugin_vc/game_vc/COneSheet.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" diff --git a/plugin_vc/game_vc/COnscreenTimer.cpp b/plugin_vc/game_vc/COnscreenTimer.cpp index e1bf6c1ea..4ac5fffa9 100644 --- a/plugin_vc/game_vc/COnscreenTimer.cpp +++ b/plugin_vc/game_vc/COnscreenTimer.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "COnscreenTimer.h" diff --git a/plugin_vc/game_vc/COnscreenTimer.h b/plugin_vc/game_vc/COnscreenTimer.h index 07f9f3bc0..64c7b47f4 100644 --- a/plugin_vc/game_vc/COnscreenTimer.h +++ b/plugin_vc/game_vc/COnscreenTimer.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once #include "PluginBase.h" diff --git a/plugin_vc/game_vc/CPad.h b/plugin_vc/game_vc/CPad.h index 4230f5911..f1f45f658 100644 --- a/plugin_vc/game_vc/CPad.h +++ b/plugin_vc/game_vc/CPad.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CControllerState.h" #include "CKeyboardState.h" diff --git a/plugin_vc/game_vc/CPager.h b/plugin_vc/game_vc/CPager.h index 26c5055ea..1d883a09e 100644 --- a/plugin_vc/game_vc/CPager.h +++ b/plugin_vc/game_vc/CPager.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" class PLUGIN_API CPager { diff --git a/plugin_vc/game_vc/CParticle.h b/plugin_vc/game_vc/CParticle.h index c2f849f1b..0d31505cf 100644 --- a/plugin_vc/game_vc/CParticle.h +++ b/plugin_vc/game_vc/CParticle.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" #include "RenderWare.h" diff --git a/plugin_vc/game_vc/CPathFind.h b/plugin_vc/game_vc/CPathFind.h index cf3f1a3b6..b99b00272 100644 --- a/plugin_vc/game_vc/CPathFind.h +++ b/plugin_vc/game_vc/CPathFind.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CPathNode.h" #include "CVector.h" diff --git a/plugin_vc/game_vc/CPathNode.h b/plugin_vc/game_vc/CPathNode.h index 31db25068..15dd6de91 100644 --- a/plugin_vc/game_vc/CPathNode.h +++ b/plugin_vc/game_vc/CPathNode.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" diff --git a/plugin_vc/game_vc/CPedIK.h b/plugin_vc/game_vc/CPedIK.h index c2d46b883..8a28d6c57 100644 --- a/plugin_vc/game_vc/CPedIK.h +++ b/plugin_vc/game_vc/CPedIK.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "RenderWare.h" diff --git a/plugin_vc/game_vc/CPedModelInfo.cpp b/plugin_vc/game_vc/CPedModelInfo.cpp index 780c8c774..cf09aa151 100644 --- a/plugin_vc/game_vc/CPedModelInfo.cpp +++ b/plugin_vc/game_vc/CPedModelInfo.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CPedModelInfo.h" diff --git a/plugin_vc/game_vc/CPedModelInfo.h b/plugin_vc/game_vc/CPedModelInfo.h index 8b63f4b3f..2fb975e3a 100644 --- a/plugin_vc/game_vc/CPedModelInfo.h +++ b/plugin_vc/game_vc/CPedModelInfo.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once #include "PluginBase.h" diff --git a/plugin_vc/game_vc/CPedPlacement.cpp b/plugin_vc/game_vc/CPedPlacement.cpp index 7baee7cfe..ca19f1980 100644 --- a/plugin_vc/game_vc/CPedPlacement.cpp +++ b/plugin_vc/game_vc/CPedPlacement.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CPedPlacement.h" diff --git a/plugin_vc/game_vc/CPedPlacement.h b/plugin_vc/game_vc/CPedPlacement.h index 6fe29c98e..48b61491c 100644 --- a/plugin_vc/game_vc/CPedPlacement.h +++ b/plugin_vc/game_vc/CPedPlacement.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once #include "PluginBase.h" diff --git a/plugin_vc/game_vc/CPedStats.h b/plugin_vc/game_vc/CPedStats.h index a77b0f350..2a040234e 100644 --- a/plugin_vc/game_vc/CPedStats.h +++ b/plugin_vc/game_vc/CPedStats.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" enum ePersonalityType : unsigned int diff --git a/plugin_vc/game_vc/CPedType.h b/plugin_vc/game_vc/CPedType.h index a09faa453..cf62c7d58 100644 --- a/plugin_vc/game_vc/CPedType.h +++ b/plugin_vc/game_vc/CPedType.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" class CPedType diff --git a/plugin_vc/game_vc/CPhone.h b/plugin_vc/game_vc/CPhone.h index a380f96b9..a6d838642 100644 --- a/plugin_vc/game_vc/CPhone.h +++ b/plugin_vc/game_vc/CPhone.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" #include "CBuilding.h" diff --git a/plugin_vc/game_vc/CPhoneInfo.h b/plugin_vc/game_vc/CPhoneInfo.h index b2517ad77..f46b9cd0d 100644 --- a/plugin_vc/game_vc/CPhoneInfo.h +++ b/plugin_vc/game_vc/CPhoneInfo.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CPhone.h" #include "CVector.h" diff --git a/plugin_vc/game_vc/CPhysical.h b/plugin_vc/game_vc/CPhysical.h index b8270e248..a248385e6 100644 --- a/plugin_vc/game_vc/CPhysical.h +++ b/plugin_vc/game_vc/CPhysical.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CEntity.h" #include "CSector.h" diff --git a/plugin_vc/game_vc/CPickups.cpp b/plugin_vc/game_vc/CPickups.cpp index bc4fb8e38..0816ae3c5 100644 --- a/plugin_vc/game_vc/CPickups.cpp +++ b/plugin_vc/game_vc/CPickups.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CPickups.h" diff --git a/plugin_vc/game_vc/CPickups.h b/plugin_vc/game_vc/CPickups.h index a1f682c5f..9871a4539 100644 --- a/plugin_vc/game_vc/CPickups.h +++ b/plugin_vc/game_vc/CPickups.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once #include "PluginBase.h" diff --git a/plugin_vc/game_vc/CPlane.cpp b/plugin_vc/game_vc/CPlane.cpp index 3b691acd8..fb8ab78b9 100644 --- a/plugin_vc/game_vc/CPlane.cpp +++ b/plugin_vc/game_vc/CPlane.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CPlane.h" diff --git a/plugin_vc/game_vc/CPlane.h b/plugin_vc/game_vc/CPlane.h index b8c07aec3..04b6eed84 100644 --- a/plugin_vc/game_vc/CPlane.h +++ b/plugin_vc/game_vc/CPlane.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once #include "PluginBase.h" diff --git a/plugin_vc/game_vc/CPlayerInfo.cpp b/plugin_vc/game_vc/CPlayerInfo.cpp index 967e6fa7b..b3ef42035 100644 --- a/plugin_vc/game_vc/CPlayerInfo.cpp +++ b/plugin_vc/game_vc/CPlayerInfo.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CPlayerInfo.h" diff --git a/plugin_vc/game_vc/CPlayerInfo.h b/plugin_vc/game_vc/CPlayerInfo.h index 711ebc374..17b889760 100644 --- a/plugin_vc/game_vc/CPlayerInfo.h +++ b/plugin_vc/game_vc/CPlayerInfo.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once #include "PluginBase.h" diff --git a/plugin_vc/game_vc/CPlayerPed.cpp b/plugin_vc/game_vc/CPlayerPed.cpp index 068dae9f8..b165a3a00 100644 --- a/plugin_vc/game_vc/CPlayerPed.cpp +++ b/plugin_vc/game_vc/CPlayerPed.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CPlayerPed.h" diff --git a/plugin_vc/game_vc/CPlayerPed.h b/plugin_vc/game_vc/CPlayerPed.h index 798e7f365..ff2d37ea3 100644 --- a/plugin_vc/game_vc/CPlayerPed.h +++ b/plugin_vc/game_vc/CPlayerPed.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CPed.h" #include "eWeaponType.h" diff --git a/plugin_vc/game_vc/CPointLight.h b/plugin_vc/game_vc/CPointLight.h index b16757c55..6f5b3c282 100644 --- a/plugin_vc/game_vc/CPointLight.h +++ b/plugin_vc/game_vc/CPointLight.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" diff --git a/plugin_vc/game_vc/CPointLights.h b/plugin_vc/game_vc/CPointLights.h index 72763d845..a7dbf0640 100644 --- a/plugin_vc/game_vc/CPointLights.h +++ b/plugin_vc/game_vc/CPointLights.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" #include "CPointLight.h" diff --git a/plugin_vc/game_vc/CPools.h b/plugin_vc/game_vc/CPools.h index aa800493e..a2ce29f08 100644 --- a/plugin_vc/game_vc/CPools.h +++ b/plugin_vc/game_vc/CPools.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CObject.h" #include "CVehicle.h" diff --git a/plugin_vc/game_vc/CPopulation.cpp b/plugin_vc/game_vc/CPopulation.cpp index 9388ee0a4..1e9bdaa9d 100644 --- a/plugin_vc/game_vc/CPopulation.cpp +++ b/plugin_vc/game_vc/CPopulation.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CPopulation.h" diff --git a/plugin_vc/game_vc/CPopulation.h b/plugin_vc/game_vc/CPopulation.h index f38f1bdaa..7c0cea8a9 100644 --- a/plugin_vc/game_vc/CPopulation.h +++ b/plugin_vc/game_vc/CPopulation.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once #include "PluginBase.h" diff --git a/plugin_vc/game_vc/CProjectile.cpp b/plugin_vc/game_vc/CProjectile.cpp index 0db3ee15b..526fc8bdc 100644 --- a/plugin_vc/game_vc/CProjectile.cpp +++ b/plugin_vc/game_vc/CProjectile.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CProjectile.h" diff --git a/plugin_vc/game_vc/CProjectile.h b/plugin_vc/game_vc/CProjectile.h index b4090c606..ec28635a9 100644 --- a/plugin_vc/game_vc/CProjectile.h +++ b/plugin_vc/game_vc/CProjectile.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CObject.h" diff --git a/plugin_vc/game_vc/CProjectileInfo.cpp b/plugin_vc/game_vc/CProjectileInfo.cpp index c193680a1..caffbaffa 100644 --- a/plugin_vc/game_vc/CProjectileInfo.cpp +++ b/plugin_vc/game_vc/CProjectileInfo.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CProjectileInfo.h" diff --git a/plugin_vc/game_vc/CProjectileInfo.h b/plugin_vc/game_vc/CProjectileInfo.h index 093d804e2..155c5ba63 100644 --- a/plugin_vc/game_vc/CProjectileInfo.h +++ b/plugin_vc/game_vc/CProjectileInfo.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CObject.h" #include "eWeaponType.h" diff --git a/plugin_vc/game_vc/CPtrList.h b/plugin_vc/game_vc/CPtrList.h index 30075a8fc..53a93798c 100644 --- a/plugin_vc/game_vc/CPtrList.h +++ b/plugin_vc/game_vc/CPtrList.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CPtrNode.h" diff --git a/plugin_vc/game_vc/CPtrNode.h b/plugin_vc/game_vc/CPtrNode.h index d059bdb43..2cb969315 100644 --- a/plugin_vc/game_vc/CPtrNode.h +++ b/plugin_vc/game_vc/CPtrNode.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" class CPtrNode { diff --git a/plugin_vc/game_vc/CQuaternion.h b/plugin_vc/game_vc/CQuaternion.h index ce44dc658..08b16ed95 100644 --- a/plugin_vc/game_vc/CQuaternion.h +++ b/plugin_vc/game_vc/CQuaternion.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once #include "PluginBase.h" diff --git a/plugin_vc/game_vc/CRect.h b/plugin_vc/game_vc/CRect.h index b7aab1226..7207f2109 100644 --- a/plugin_vc/game_vc/CRect.h +++ b/plugin_vc/game_vc/CRect.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector2D.h" diff --git a/plugin_vc/game_vc/CRegisteredMotionBlurStreak.h b/plugin_vc/game_vc/CRegisteredMotionBlurStreak.h index 8620be0d6..bf70dd355 100644 --- a/plugin_vc/game_vc/CRegisteredMotionBlurStreak.h +++ b/plugin_vc/game_vc/CRegisteredMotionBlurStreak.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" #include "CRGBA.h" diff --git a/plugin_vc/game_vc/CRestart.h b/plugin_vc/game_vc/CRestart.h index dab64939f..d1e8c0b30 100644 --- a/plugin_vc/game_vc/CRestart.h +++ b/plugin_vc/game_vc/CRestart.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" diff --git a/plugin_vc/game_vc/CRouteNode.h b/plugin_vc/game_vc/CRouteNode.h index ee796da01..06f1f4563 100644 --- a/plugin_vc/game_vc/CRouteNode.h +++ b/plugin_vc/game_vc/CRouteNode.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" diff --git a/plugin_vc/game_vc/CRubbish.h b/plugin_vc/game_vc/CRubbish.h index 992d79d10..22d473e65 100644 --- a/plugin_vc/game_vc/CRubbish.h +++ b/plugin_vc/game_vc/CRubbish.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVehicle.h" #include "COneSheet.h" diff --git a/plugin_vc/game_vc/CScene.h b/plugin_vc/game_vc/CScene.h index 1b9abf024..39d146869 100644 --- a/plugin_vc/game_vc/CScene.h +++ b/plugin_vc/game_vc/CScene.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "RenderWare.h" diff --git a/plugin_vc/game_vc/CSceneEdit.h b/plugin_vc/game_vc/CSceneEdit.h index 063518171..75f3b204f 100644 --- a/plugin_vc/game_vc/CSceneEdit.h +++ b/plugin_vc/game_vc/CSceneEdit.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CMovie.h" #include "CPed.h" diff --git a/plugin_vc/game_vc/CSector.h b/plugin_vc/game_vc/CSector.h index edc698121..6dbbe37a1 100644 --- a/plugin_vc/game_vc/CSector.h +++ b/plugin_vc/game_vc/CSector.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CPtrList.h" diff --git a/plugin_vc/game_vc/CShadowCamera.h b/plugin_vc/game_vc/CShadowCamera.h index 2a996a28b..6a194483d 100644 --- a/plugin_vc/game_vc/CShadowCamera.h +++ b/plugin_vc/game_vc/CShadowCamera.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "RenderWare.h" diff --git a/plugin_vc/game_vc/CShinyTexts.h b/plugin_vc/game_vc/CShinyTexts.h index c244a3a83..5195478cd 100644 --- a/plugin_vc/game_vc/CShinyTexts.h +++ b/plugin_vc/game_vc/CShinyTexts.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" diff --git a/plugin_vc/game_vc/CShotInfo.h b/plugin_vc/game_vc/CShotInfo.h index dcfadd84c..ec6e3b2f9 100644 --- a/plugin_vc/game_vc/CShotInfo.h +++ b/plugin_vc/game_vc/CShotInfo.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" #include "eWeaponType.h" diff --git a/plugin_vc/game_vc/CSimpleModelInfo.h b/plugin_vc/game_vc/CSimpleModelInfo.h index d65db66f9..3a07005ed 100644 --- a/plugin_vc/game_vc/CSimpleModelInfo.h +++ b/plugin_vc/game_vc/CSimpleModelInfo.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CBaseModelInfo.h" diff --git a/plugin_vc/game_vc/CSphere.cpp b/plugin_vc/game_vc/CSphere.cpp index 0c5eaf35f..670b49c86 100644 --- a/plugin_vc/game_vc/CSphere.cpp +++ b/plugin_vc/game_vc/CSphere.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CSphere.h" diff --git a/plugin_vc/game_vc/CSphere.h b/plugin_vc/game_vc/CSphere.h index 7d438f698..5a977e4ed 100644 --- a/plugin_vc/game_vc/CSphere.h +++ b/plugin_vc/game_vc/CSphere.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" diff --git a/plugin_vc/game_vc/CSprite.h b/plugin_vc/game_vc/CSprite.h index 9c347a5fd..f4d40e6fb 100644 --- a/plugin_vc/game_vc/CSprite.h +++ b/plugin_vc/game_vc/CSprite.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "RenderWare.h" diff --git a/plugin_vc/game_vc/CSprite2d.h b/plugin_vc/game_vc/CSprite2d.h index 44956a76e..1e427470b 100644 --- a/plugin_vc/game_vc/CSprite2d.h +++ b/plugin_vc/game_vc/CSprite2d.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "RenderWare.h" #include "CRect.h" diff --git a/plugin_vc/game_vc/CStats.cpp b/plugin_vc/game_vc/CStats.cpp index cc7e4fce3..a2e8a5f96 100644 --- a/plugin_vc/game_vc/CStats.cpp +++ b/plugin_vc/game_vc/CStats.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CStats.h" diff --git a/plugin_vc/game_vc/CStats.h b/plugin_vc/game_vc/CStats.h index 93e5345f5..8769b6a6f 100644 --- a/plugin_vc/game_vc/CStats.h +++ b/plugin_vc/game_vc/CStats.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_vc/game_vc/CStinger.cpp b/plugin_vc/game_vc/CStinger.cpp index 0408c9f9d..98fa92fba 100644 --- a/plugin_vc/game_vc/CStinger.cpp +++ b/plugin_vc/game_vc/CStinger.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CStinger.h" diff --git a/plugin_vc/game_vc/CStinger.h b/plugin_vc/game_vc/CStinger.h index 4b6640a71..d74737272 100644 --- a/plugin_vc/game_vc/CStinger.h +++ b/plugin_vc/game_vc/CStinger.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CPed.h" #include "CObject.h" diff --git a/plugin_vc/game_vc/CStoredCollPoly.h b/plugin_vc/game_vc/CStoredCollPoly.h index 47248ee68..eb5c8d534 100644 --- a/plugin_vc/game_vc/CStoredCollPoly.h +++ b/plugin_vc/game_vc/CStoredCollPoly.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" diff --git a/plugin_vc/game_vc/CTheScripts.h b/plugin_vc/game_vc/CTheScripts.h index e2c3e7ac8..9b60d174c 100644 --- a/plugin_vc/game_vc/CTheScripts.h +++ b/plugin_vc/game_vc/CTheScripts.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CRunningScript.h" #include "CObject.h" diff --git a/plugin_vc/game_vc/CTheZones.cpp b/plugin_vc/game_vc/CTheZones.cpp index 425c9c52d..f125ee07e 100644 --- a/plugin_vc/game_vc/CTheZones.cpp +++ b/plugin_vc/game_vc/CTheZones.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CTheZones.h" diff --git a/plugin_vc/game_vc/CTheZones.h b/plugin_vc/game_vc/CTheZones.h index 2599f923f..507c79e52 100644 --- a/plugin_vc/game_vc/CTheZones.h +++ b/plugin_vc/game_vc/CTheZones.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once #include "PluginBase.h" diff --git a/plugin_vc/game_vc/CTimeCycle.h b/plugin_vc/game_vc/CTimeCycle.h index daf4df966..dd34a3995 100644 --- a/plugin_vc/game_vc/CTimeCycle.h +++ b/plugin_vc/game_vc/CTimeCycle.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" class PLUGIN_API CTimeCycle { diff --git a/plugin_vc/game_vc/CTimeModelInfo.cpp b/plugin_vc/game_vc/CTimeModelInfo.cpp index 48955f893..25beff7cc 100644 --- a/plugin_vc/game_vc/CTimeModelInfo.cpp +++ b/plugin_vc/game_vc/CTimeModelInfo.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CTimeModelInfo.h" diff --git a/plugin_vc/game_vc/CTimeModelInfo.h b/plugin_vc/game_vc/CTimeModelInfo.h index 335e0fd45..991bbbb52 100644 --- a/plugin_vc/game_vc/CTimeModelInfo.h +++ b/plugin_vc/game_vc/CTimeModelInfo.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once #include "PluginBase.h" diff --git a/plugin_vc/game_vc/CTimer.h b/plugin_vc/game_vc/CTimer.h index 894511b9c..0b73f4b33 100644 --- a/plugin_vc/game_vc/CTimer.h +++ b/plugin_vc/game_vc/CTimer.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" class PLUGIN_API CTimer { diff --git a/plugin_vc/game_vc/CTrafficLights.h b/plugin_vc/game_vc/CTrafficLights.h index 8c682322e..3c72b4d41 100644 --- a/plugin_vc/game_vc/CTrafficLights.h +++ b/plugin_vc/game_vc/CTrafficLights.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CEntity.h" #include "CVehicle.h" diff --git a/plugin_vc/game_vc/CTrain.cpp b/plugin_vc/game_vc/CTrain.cpp index 4fee8a251..e07694906 100644 --- a/plugin_vc/game_vc/CTrain.cpp +++ b/plugin_vc/game_vc/CTrain.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CTrain.h" diff --git a/plugin_vc/game_vc/CTrain.h b/plugin_vc/game_vc/CTrain.h index fa5cb3c17..81d43cce7 100644 --- a/plugin_vc/game_vc/CTrain.h +++ b/plugin_vc/game_vc/CTrain.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once #include "PluginBase.h" diff --git a/plugin_vc/game_vc/CTreadable.h b/plugin_vc/game_vc/CTreadable.h index 4c0bbbb97..44086ae52 100644 --- a/plugin_vc/game_vc/CTreadable.h +++ b/plugin_vc/game_vc/CTreadable.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CBuilding.h" diff --git a/plugin_vc/game_vc/CTxdStore.cpp b/plugin_vc/game_vc/CTxdStore.cpp index 9c694fc63..16ff89b28 100644 --- a/plugin_vc/game_vc/CTxdStore.cpp +++ b/plugin_vc/game_vc/CTxdStore.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CTxdStore.h" diff --git a/plugin_vc/game_vc/CTxdStore.h b/plugin_vc/game_vc/CTxdStore.h index 434c20a39..acc5a607b 100644 --- a/plugin_vc/game_vc/CTxdStore.h +++ b/plugin_vc/game_vc/CTxdStore.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once #include "PluginBase.h" diff --git a/plugin_vc/game_vc/CUserDisplay.cpp b/plugin_vc/game_vc/CUserDisplay.cpp index 83e14bf9a..78bf9ffba 100644 --- a/plugin_vc/game_vc/CUserDisplay.cpp +++ b/plugin_vc/game_vc/CUserDisplay.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CUserDisplay.h" diff --git a/plugin_vc/game_vc/CUserDisplay.h b/plugin_vc/game_vc/CUserDisplay.h index 5f52a84fe..1e7dcc10a 100644 --- a/plugin_vc/game_vc/CUserDisplay.h +++ b/plugin_vc/game_vc/CUserDisplay.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once #include "PluginBase.h" diff --git a/plugin_vc/game_vc/CVehicle.cpp b/plugin_vc/game_vc/CVehicle.cpp index ac9e105d9..be0a0a03c 100644 --- a/plugin_vc/game_vc/CVehicle.cpp +++ b/plugin_vc/game_vc/CVehicle.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CVehicle.h" diff --git a/plugin_vc/game_vc/CVehicle.h b/plugin_vc/game_vc/CVehicle.h index fb8411add..ddc66012f 100644 --- a/plugin_vc/game_vc/CVehicle.h +++ b/plugin_vc/game_vc/CVehicle.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_vc/game_vc/CWanted.cpp b/plugin_vc/game_vc/CWanted.cpp index d5494a206..5e0152e61 100644 --- a/plugin_vc/game_vc/CWanted.cpp +++ b/plugin_vc/game_vc/CWanted.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CWanted.h" diff --git a/plugin_vc/game_vc/CWanted.h b/plugin_vc/game_vc/CWanted.h index 4c52ea4f8..3d959783a 100644 --- a/plugin_vc/game_vc/CWanted.h +++ b/plugin_vc/game_vc/CWanted.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once #include "PluginBase.h" diff --git a/plugin_vc/game_vc/CWaterCannons.h b/plugin_vc/game_vc/CWaterCannons.h index 7f3cd9b65..4b74a4dcf 100644 --- a/plugin_vc/game_vc/CWaterCannons.h +++ b/plugin_vc/game_vc/CWaterCannons.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CEntity.h" diff --git a/plugin_vc/game_vc/CWeapon.cpp b/plugin_vc/game_vc/CWeapon.cpp index ce276d4b0..5349ffd0d 100644 --- a/plugin_vc/game_vc/CWeapon.cpp +++ b/plugin_vc/game_vc/CWeapon.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CWeapon.h" diff --git a/plugin_vc/game_vc/CWeapon.h b/plugin_vc/game_vc/CWeapon.h index 553b236c5..4d48d84e7 100644 --- a/plugin_vc/game_vc/CWeapon.h +++ b/plugin_vc/game_vc/CWeapon.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "eWeaponType.h" #include "CEntity.h" diff --git a/plugin_vc/game_vc/CWeaponEffects.cpp b/plugin_vc/game_vc/CWeaponEffects.cpp index 4790565c8..c3a8ae0a9 100644 --- a/plugin_vc/game_vc/CWeaponEffects.cpp +++ b/plugin_vc/game_vc/CWeaponEffects.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CWeaponEffects.h" diff --git a/plugin_vc/game_vc/CWeaponEffects.h b/plugin_vc/game_vc/CWeaponEffects.h index 3bcf43904..4af46e3a2 100644 --- a/plugin_vc/game_vc/CWeaponEffects.h +++ b/plugin_vc/game_vc/CWeaponEffects.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once #include "PluginBase.h" diff --git a/plugin_vc/game_vc/CWeaponInfo.cpp b/plugin_vc/game_vc/CWeaponInfo.cpp index 45ebf69e5..c62dc5be2 100644 --- a/plugin_vc/game_vc/CWeaponInfo.cpp +++ b/plugin_vc/game_vc/CWeaponInfo.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CWeaponInfo.h" diff --git a/plugin_vc/game_vc/CWeaponInfo.h b/plugin_vc/game_vc/CWeaponInfo.h index 76beb4365..c0cc0595a 100644 --- a/plugin_vc/game_vc/CWeaponInfo.h +++ b/plugin_vc/game_vc/CWeaponInfo.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once #include "PluginBase.h" diff --git a/plugin_vc/game_vc/CWeaponModelInfo.cpp b/plugin_vc/game_vc/CWeaponModelInfo.cpp index 88018ba3d..a576202cf 100644 --- a/plugin_vc/game_vc/CWeaponModelInfo.cpp +++ b/plugin_vc/game_vc/CWeaponModelInfo.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CWeaponModelInfo.h" diff --git a/plugin_vc/game_vc/CWeaponModelInfo.h b/plugin_vc/game_vc/CWeaponModelInfo.h index 0e1209b5c..1b65526d6 100644 --- a/plugin_vc/game_vc/CWeaponModelInfo.h +++ b/plugin_vc/game_vc/CWeaponModelInfo.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once #include "PluginBase.h" diff --git a/plugin_vc/game_vc/CWeather.cpp b/plugin_vc/game_vc/CWeather.cpp index 09e7a2edb..8f61a6490 100644 --- a/plugin_vc/game_vc/CWeather.cpp +++ b/plugin_vc/game_vc/CWeather.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CWeather.h" diff --git a/plugin_vc/game_vc/CWeather.h b/plugin_vc/game_vc/CWeather.h index 9c1270a64..6e605f0a3 100644 --- a/plugin_vc/game_vc/CWeather.h +++ b/plugin_vc/game_vc/CWeather.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once #include "PluginBase.h" diff --git a/plugin_vc/game_vc/CWheel.h b/plugin_vc/game_vc/CWheel.h index f8210f761..d38a8c469 100644 --- a/plugin_vc/game_vc/CWheel.h +++ b/plugin_vc/game_vc/CWheel.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" diff --git a/plugin_vc/game_vc/CWindModifiers.h b/plugin_vc/game_vc/CWindModifiers.h index 08c952605..865671a55 100644 --- a/plugin_vc/game_vc/CWindModifiers.h +++ b/plugin_vc/game_vc/CWindModifiers.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" diff --git a/plugin_vc/game_vc/C_PcSave.h b/plugin_vc/game_vc/C_PcSave.h index e940db264..23ceec56b 100644 --- a/plugin_vc/game_vc/C_PcSave.h +++ b/plugin_vc/game_vc/C_PcSave.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" enum PLUGIN_API eSaveSlot : unsigned char { diff --git a/plugin_vc/game_vc/DRAW_FADE_STATE.h b/plugin_vc/game_vc/DRAW_FADE_STATE.h index d7d0d3030..59434ead5 100644 --- a/plugin_vc/game_vc/DRAW_FADE_STATE.h +++ b/plugin_vc/game_vc/DRAW_FADE_STATE.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" enum PLUGIN_API DRAW_FADE_STATE { diff --git a/plugin_vc/game_vc/NodeName.h b/plugin_vc/game_vc/NodeName.h index 16d47b483..c47512585 100644 --- a/plugin_vc/game_vc/NodeName.h +++ b/plugin_vc/game_vc/NodeName.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "RenderWare.h" diff --git a/plugin_vc/game_vc/RwObjectNameIdAssocation.h b/plugin_vc/game_vc/RwObjectNameIdAssocation.h index 7ba823625..a8fba5db4 100644 --- a/plugin_vc/game_vc/RwObjectNameIdAssocation.h +++ b/plugin_vc/game_vc/RwObjectNameIdAssocation.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once #include "PluginBase.h" diff --git a/plugin_vc/game_vc/cAudioScriptObject.h b/plugin_vc/game_vc/cAudioScriptObject.h index 098f04eb5..35a85858a 100644 --- a/plugin_vc/game_vc/cAudioScriptObject.h +++ b/plugin_vc/game_vc/cAudioScriptObject.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" diff --git a/plugin_vc/game_vc/cBuoyancy.h b/plugin_vc/game_vc/cBuoyancy.h index 7be65b339..9ae432c5b 100644 --- a/plugin_vc/game_vc/cBuoyancy.h +++ b/plugin_vc/game_vc/cBuoyancy.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CPhysical.h" diff --git a/plugin_vc/game_vc/cHandlingDataMgr.cpp b/plugin_vc/game_vc/cHandlingDataMgr.cpp index b6ad6986d..e14098af5 100644 --- a/plugin_vc/game_vc/cHandlingDataMgr.cpp +++ b/plugin_vc/game_vc/cHandlingDataMgr.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "cHandlingDataMgr.h" diff --git a/plugin_vc/game_vc/cHandlingDataMgr.h b/plugin_vc/game_vc/cHandlingDataMgr.h index 95c0669d6..d037e7e14 100644 --- a/plugin_vc/game_vc/cHandlingDataMgr.h +++ b/plugin_vc/game_vc/cHandlingDataMgr.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "tHandlingData.h" #include "tBikeHandlingData.h" diff --git a/plugin_vc/game_vc/cParticleSystemMgr.h b/plugin_vc/game_vc/cParticleSystemMgr.h index 63418bc5f..1c4d4a0ea 100644 --- a/plugin_vc/game_vc/cParticleSystemMgr.h +++ b/plugin_vc/game_vc/cParticleSystemMgr.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "tParticleSystemData.h" diff --git a/plugin_vc/game_vc/cTransmission.cpp b/plugin_vc/game_vc/cTransmission.cpp index 2823a8855..6f9f04fde 100644 --- a/plugin_vc/game_vc/cTransmission.cpp +++ b/plugin_vc/game_vc/cTransmission.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "cTransmission.h" diff --git a/plugin_vc/game_vc/cTransmission.h b/plugin_vc/game_vc/cTransmission.h index df61ad75c..95cdea610 100644 --- a/plugin_vc/game_vc/cTransmission.h +++ b/plugin_vc/game_vc/cTransmission.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "tTransmissionGear.h" diff --git a/plugin_vc/game_vc/enums/eCopType.h b/plugin_vc/game_vc/enums/eCopType.h index 1d4681e99..68065fc81 100644 --- a/plugin_vc/game_vc/enums/eCopType.h +++ b/plugin_vc/game_vc/enums/eCopType.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_vc/game_vc/enums/eCoronaType.h b/plugin_vc/game_vc/enums/eCoronaType.h index 3483aba77..5ba206e4f 100644 --- a/plugin_vc/game_vc/enums/eCoronaType.h +++ b/plugin_vc/game_vc/enums/eCoronaType.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_vc/game_vc/enums/eCrimeType.h b/plugin_vc/game_vc/enums/eCrimeType.h index dc67c90e6..b980fa670 100644 --- a/plugin_vc/game_vc/enums/eCrimeType.h +++ b/plugin_vc/game_vc/enums/eCrimeType.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_vc/game_vc/enums/eEntityStatus.h b/plugin_vc/game_vc/enums/eEntityStatus.h index a97eed82b..78388ea99 100644 --- a/plugin_vc/game_vc/enums/eEntityStatus.h +++ b/plugin_vc/game_vc/enums/eEntityStatus.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_vc/game_vc/enums/eEventType.h b/plugin_vc/game_vc/enums/eEventType.h index a722822af..e634e2913 100644 --- a/plugin_vc/game_vc/enums/eEventType.h +++ b/plugin_vc/game_vc/enums/eEventType.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_vc/game_vc/enums/eExplosionType.h b/plugin_vc/game_vc/enums/eExplosionType.h index 60436b833..65e19be10 100644 --- a/plugin_vc/game_vc/enums/eExplosionType.h +++ b/plugin_vc/game_vc/enums/eExplosionType.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_vc/game_vc/enums/eFormation.h b/plugin_vc/game_vc/enums/eFormation.h index 07107d1df..d4dc77288 100644 --- a/plugin_vc/game_vc/enums/eFormation.h +++ b/plugin_vc/game_vc/enums/eFormation.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_vc/game_vc/enums/eGangType.h b/plugin_vc/game_vc/enums/eGangType.h index a37c3b0cd..962f1f973 100644 --- a/plugin_vc/game_vc/enums/eGangType.h +++ b/plugin_vc/game_vc/enums/eGangType.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_vc/game_vc/enums/eLevelName.h b/plugin_vc/game_vc/enums/eLevelName.h index 582d679dd..1f1932eb8 100644 --- a/plugin_vc/game_vc/enums/eLevelName.h +++ b/plugin_vc/game_vc/enums/eLevelName.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_vc/game_vc/enums/eModelInfoType.h b/plugin_vc/game_vc/enums/eModelInfoType.h index 66dd34c67..08300920d 100644 --- a/plugin_vc/game_vc/enums/eModelInfoType.h +++ b/plugin_vc/game_vc/enums/eModelInfoType.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once #include diff --git a/plugin_vc/game_vc/enums/eParticleObjectType.h b/plugin_vc/game_vc/enums/eParticleObjectType.h index 777e0887d..b0db18b6e 100644 --- a/plugin_vc/game_vc/enums/eParticleObjectType.h +++ b/plugin_vc/game_vc/enums/eParticleObjectType.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_vc/game_vc/enums/ePedAction.h b/plugin_vc/game_vc/enums/ePedAction.h index c043feabc..38e8df3c8 100644 --- a/plugin_vc/game_vc/enums/ePedAction.h +++ b/plugin_vc/game_vc/enums/ePedAction.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_vc/game_vc/enums/ePedModel.h b/plugin_vc/game_vc/enums/ePedModel.h index 2ad92b0f4..46ade15cc 100644 --- a/plugin_vc/game_vc/enums/ePedModel.h +++ b/plugin_vc/game_vc/enums/ePedModel.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_vc/game_vc/enums/ePedPieceTypes.h b/plugin_vc/game_vc/enums/ePedPieceTypes.h index 4bae6d1ad..ea706e0e1 100644 --- a/plugin_vc/game_vc/enums/ePedPieceTypes.h +++ b/plugin_vc/game_vc/enums/ePedPieceTypes.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_vc/game_vc/enums/ePedStats.h b/plugin_vc/game_vc/enums/ePedStats.h index 268013842..c03f9af40 100644 --- a/plugin_vc/game_vc/enums/ePedStats.h +++ b/plugin_vc/game_vc/enums/ePedStats.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_vc/game_vc/enums/ePickupType.h b/plugin_vc/game_vc/enums/ePickupType.h index 539b4f830..fa16e2b37 100644 --- a/plugin_vc/game_vc/enums/ePickupType.h +++ b/plugin_vc/game_vc/enums/ePickupType.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_vc/game_vc/enums/eRadioStations.h b/plugin_vc/game_vc/enums/eRadioStations.h index af2a791ac..2535e42d2 100644 --- a/plugin_vc/game_vc/enums/eRadioStations.h +++ b/plugin_vc/game_vc/enums/eRadioStations.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_vc/game_vc/enums/eSceneCommands.h b/plugin_vc/game_vc/enums/eSceneCommands.h index 097667375..418b94551 100644 --- a/plugin_vc/game_vc/enums/eSceneCommands.h +++ b/plugin_vc/game_vc/enums/eSceneCommands.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto 3) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto 3) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_vc/game_vc/enums/eShadowType.h b/plugin_vc/game_vc/enums/eShadowType.h index d322c3983..250b513de 100644 --- a/plugin_vc/game_vc/enums/eShadowType.h +++ b/plugin_vc/game_vc/enums/eShadowType.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_vc/game_vc/enums/eVehicleFlags.h b/plugin_vc/game_vc/enums/eVehicleFlags.h index c7eea4feb..2c9d1f416 100644 --- a/plugin_vc/game_vc/enums/eVehicleFlags.h +++ b/plugin_vc/game_vc/enums/eVehicleFlags.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_vc/game_vc/enums/eVehicleType.h b/plugin_vc/game_vc/enums/eVehicleType.h index cf94d9b80..2734d02ab 100644 --- a/plugin_vc/game_vc/enums/eVehicleType.h +++ b/plugin_vc/game_vc/enums/eVehicleType.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_vc/game_vc/enums/eWaitState.h b/plugin_vc/game_vc/enums/eWaitState.h index 605f1d61b..9540343d2 100644 --- a/plugin_vc/game_vc/enums/eWaitState.h +++ b/plugin_vc/game_vc/enums/eWaitState.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_vc/game_vc/enums/eWeaponFire.h b/plugin_vc/game_vc/enums/eWeaponFire.h index d0d569089..80a38e140 100644 --- a/plugin_vc/game_vc/enums/eWeaponFire.h +++ b/plugin_vc/game_vc/enums/eWeaponFire.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_vc/game_vc/enums/eWeaponModel.h b/plugin_vc/game_vc/enums/eWeaponModel.h index 6cb354ea2..14288090d 100644 --- a/plugin_vc/game_vc/enums/eWeaponModel.h +++ b/plugin_vc/game_vc/enums/eWeaponModel.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_vc/game_vc/enums/eWeaponType.h b/plugin_vc/game_vc/enums/eWeaponType.h index a393be90c..84968ac5d 100644 --- a/plugin_vc/game_vc/enums/eWeaponType.h +++ b/plugin_vc/game_vc/enums/eWeaponType.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_vc/game_vc/enums/eWeather.h b/plugin_vc/game_vc/enums/eWeather.h index d2657fb4a..363e1f047 100644 --- a/plugin_vc/game_vc/enums/eWeather.h +++ b/plugin_vc/game_vc/enums/eWeather.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_vc/game_vc/tBikeHandlingData.h b/plugin_vc/game_vc/tBikeHandlingData.h index 1f373dc60..541e704b3 100644 --- a/plugin_vc/game_vc/tBikeHandlingData.h +++ b/plugin_vc/game_vc/tBikeHandlingData.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" struct tBikeHandlingData { diff --git a/plugin_vc/game_vc/tBoatHandlingData.h b/plugin_vc/game_vc/tBoatHandlingData.h index aef44bcff..9dd5d0b0f 100644 --- a/plugin_vc/game_vc/tBoatHandlingData.h +++ b/plugin_vc/game_vc/tBoatHandlingData.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" diff --git a/plugin_vc/game_vc/tCamPathSplines.h b/plugin_vc/game_vc/tCamPathSplines.h index 0261f9c18..c72552711 100644 --- a/plugin_vc/game_vc/tCamPathSplines.h +++ b/plugin_vc/game_vc/tCamPathSplines.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" struct tCamPathSplines { diff --git a/plugin_vc/game_vc/tFlyingHandlingData.h b/plugin_vc/game_vc/tFlyingHandlingData.h index 5d9aa7334..22d6e8d4e 100644 --- a/plugin_vc/game_vc/tFlyingHandlingData.h +++ b/plugin_vc/game_vc/tFlyingHandlingData.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" diff --git a/plugin_vc/game_vc/tHandlingData.h b/plugin_vc/game_vc/tHandlingData.h index 609dcee0c..997505455 100644 --- a/plugin_vc/game_vc/tHandlingData.h +++ b/plugin_vc/game_vc/tHandlingData.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "cTransmission.h" #include "CVector.h" diff --git a/plugin_vc/game_vc/tParticleSystemData.h b/plugin_vc/game_vc/tParticleSystemData.h index 50dac7320..e1b5289d8 100644 --- a/plugin_vc/game_vc/tParticleSystemData.h +++ b/plugin_vc/game_vc/tParticleSystemData.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "RenderWare.h" diff --git a/plugin_vc/game_vc/tParticleType.h b/plugin_vc/game_vc/tParticleType.h index f8f13e2e5..8319384e8 100644 --- a/plugin_vc/game_vc/tParticleType.h +++ b/plugin_vc/game_vc/tParticleType.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" enum PLUGIN_API tParticleType : unsigned int { diff --git a/plugin_vc/game_vc/tQueuedMode.h b/plugin_vc/game_vc/tQueuedMode.h index 06ff43a3c..a3402e8d4 100644 --- a/plugin_vc/game_vc/tQueuedMode.h +++ b/plugin_vc/game_vc/tQueuedMode.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" struct tQueuedMode { diff --git a/plugin_vc/game_vc/tTransmissionGear.h b/plugin_vc/game_vc/tTransmissionGear.h index 8a0665289..a3eda920f 100644 --- a/plugin_vc/game_vc/tTransmissionGear.h +++ b/plugin_vc/game_vc/tTransmissionGear.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" struct PLUGIN_API tTransmissionGear diff --git a/plugin_vc/plugin_vc.h b/plugin_vc/plugin_vc.h index c2dcff57e..fa89a5f19 100644 --- a/plugin_vc/plugin_vc.h +++ b/plugin_vc/plugin_vc.h @@ -5,5 +5,4 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "plugin.h" diff --git a/plugin_vc_unreal/game_vc_unreal/common.h b/plugin_vc_unreal/game_vc_unreal/common.h index 2889161f8..1a1241b7b 100644 --- a/plugin_vc_unreal/game_vc_unreal/common.h +++ b/plugin_vc_unreal/game_vc_unreal/common.h @@ -5,5 +5,4 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" diff --git a/plugin_vc_unreal/plugin_vc_unreal.h b/plugin_vc_unreal/plugin_vc_unreal.h index 83b15a2bc..fb7d5725a 100644 --- a/plugin_vc_unreal/plugin_vc_unreal.h +++ b/plugin_vc_unreal/plugin_vc_unreal.h @@ -5,5 +5,4 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "plugin.h" diff --git a/shared/Color.h b/shared/Color.h index 4034c1d4c..5ec3a7d31 100644 --- a/shared/Color.h +++ b/shared/Color.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "CRGBA.h" namespace plugin { diff --git a/shared/Extender.h b/shared/Extender.h index e22a40a90..4e99ca1be 100644 --- a/shared/Extender.h +++ b/shared/Extender.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include namespace plugin { diff --git a/shared/GameVersionMessage.h b/shared/GameVersionMessage.h index e7104914d..12c2476e8 100644 --- a/shared/GameVersionMessage.h +++ b/shared/GameVersionMessage.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "GameVersion.h" #include #include diff --git a/shared/Patch.h b/shared/Patch.h index e5ccca0a0..ed05e9815 100644 --- a/shared/Patch.h +++ b/shared/Patch.h @@ -4,7 +4,6 @@ https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! */ - #pragma once #include diff --git a/shared/StringUtils.h b/shared/StringUtils.h index cb5c8ab73..54b0b8dad 100644 --- a/shared/StringUtils.h +++ b/shared/StringUtils.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include namespace StringUtils { diff --git a/shared/common_sdk.h b/shared/common_sdk.h index 7b44e8b96..6f3aa81f9 100644 --- a/shared/common_sdk.h +++ b/shared/common_sdk.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "common.h" diff --git a/shared/comp/plugins/LimitAdjusterSupport.cpp b/shared/comp/plugins/LimitAdjusterSupport.cpp index 76a515e79..252ccd889 100644 --- a/shared/comp/plugins/LimitAdjusterSupport.cpp +++ b/shared/comp/plugins/LimitAdjusterSupport.cpp @@ -4,7 +4,6 @@ https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! */ - #include "plugin.h" #include "LimitAdjusterSupport.h" //#include "CCoronas.h" diff --git a/shared/comp/plugins/LimitAdjusterSupport.h b/shared/comp/plugins/LimitAdjusterSupport.h index 9e1c41318..74031f039 100644 --- a/shared/comp/plugins/LimitAdjusterSupport.h +++ b/shared/comp/plugins/LimitAdjusterSupport.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "comp/PluginSupport.h" class Fastman92LimitAdjusterSupport : public PluginSupport {