From 6ebbea3e4f0f3e97afb288b3f7d9bf182f29101c Mon Sep 17 00:00:00 2001 From: Miran Date: Sat, 25 Apr 2026 22:51:39 +0200 Subject: [PATCH 1/9] New workflow --- .github/workflows/Validate_File_Contents.yaml | 29 +++++++++ .../scripts/Validate_File_Contents.js | 62 +++++++++++++++++++ 2 files changed, 91 insertions(+) create mode 100644 .github/workflows/Validate_File_Contents.yaml create mode 100644 .github/workflows/scripts/Validate_File_Contents.js diff --git a/.github/workflows/Validate_File_Contents.yaml b/.github/workflows/Validate_File_Contents.yaml new file mode 100644 index 00000000..d660a47f --- /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 00000000..5fc9ae0c --- /dev/null +++ b/.github/workflows/scripts/Validate_File_Contents.js @@ -0,0 +1,62 @@ +const fs = require('fs'); +const path = require('path'); + +walkRecursive('./'); + +function walkRecursive(dir) +{ + const files = fs.readdirSync(dir, { withFileTypes: true }); + + for (const file of files) + { + const fullPath = path.join(dir, file.name); + + if (file.isDirectory()) + walkRecursive(fullPath); + else + console.log('File found:', fullPath); + } +} + + + +/*const fs = require("fs"); +const title = process.argv[2]; + +function escapeData(value) { + return value.replace(/%/g, "%25").replace(/\r/g, "%0D").replace(/\n/g, "%0A"); +} + +function escapeProperty(value) { + return escapeData(value).replace(/:/g, "%3A").replace(/,/g, "%2C"); +} + +function normalizeLevel(value) { + return ["error", "warning", "notice"].includes(value) ? value : "error"; +} + +// Step 1: Read, sort, and deduplicate lines +let lines = fs.readFileSync("output.log", "utf8").split(/\r?\n/); +lines.sort(); +lines = new Set(lines); + +// Step 2 & 3: Replace patterns and process each line for GitHub Actions output (from memory) +let hadOutput = false; +for (let line of lines) { + line = line.replace(/ \d>/g, "").replace(/.:\\a\\plugin-sdk\\plugin-sdk\\/g, ""); + if (!line.trim()) continue; + hadOutput = true; + const match = line.match(/^(.*)\((\d+),(\d+)\): (\w+) (.*) \[.*\]$/); + if (match) { + // ::level file=filepath,line=linenumber,title=title::message + const level = normalizeLevel(match[4]); + console.log(`::${level} file=${escapeProperty(match[1])},line=${match[2]},title=${escapeProperty(title)}::${escapeData(match[5])}`); + } else { + console.log(`::error title=${escapeProperty(title)}::${escapeData(line)}`); + } +} + +// Step 4: Exit with error if there was anything in log (error or warning) +if (hadOutput) process.exit(1);*/ + +console.log("hello!"); \ No newline at end of file From ae0b53ceb14102bc820bd502bee27504b21b6db9 Mon Sep 17 00:00:00 2001 From: Miran Date: Sat, 25 Apr 2026 22:53:39 +0200 Subject: [PATCH 2/9] Up --- .github/workflows/Validate_File_Contents.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/Validate_File_Contents.yaml b/.github/workflows/Validate_File_Contents.yaml index d660a47f..7700eca4 100644 --- a/.github/workflows/Validate_File_Contents.yaml +++ b/.github/workflows/Validate_File_Contents.yaml @@ -26,4 +26,4 @@ jobs: uses: actions/checkout@v6 - name: Check files - run: node .github/workflows/scripts/validate_file_contents.js + run: node .github/workflows/scripts/Validate_File_Contents.js From c5d2a3cec3c8c9e8fc088bd74efa0d3413ddc271 Mon Sep 17 00:00:00 2001 From: Miran Date: Sun, 26 Apr 2026 00:07:27 +0200 Subject: [PATCH 3/9] up --- .../scripts/Validate_File_Contents.js | 114 ++++++++++++++++-- 1 file changed, 103 insertions(+), 11 deletions(-) diff --git a/.github/workflows/scripts/Validate_File_Contents.js b/.github/workflows/scripts/Validate_File_Contents.js index 5fc9ae0c..c83eb288 100644 --- a/.github/workflows/scripts/Validate_File_Contents.js +++ b/.github/workflows/scripts/Validate_File_Contents.js @@ -1,24 +1,118 @@ -const fs = require('fs'); -const path = require('path'); +const fs = require("fs"); +const path = require("path"); + +let result = true; +//result = result && walkRecursive("./examples/"); +result = result && walkRecursive("./plugin_sa/"); + +if (!result) + process.exit(1); // problem found -walkRecursive('./'); function walkRecursive(dir) { + let result = true; + const files = fs.readdirSync(dir, { withFileTypes: true }); - for (const file of files) { - const fullPath = path.join(dir, file.name); + const filename = path.join(dir, file.name); if (file.isDirectory()) - walkRecursive(fullPath); + walkRecursive(filename); else - console.log('File found:', fullPath); + result = result && processFile(filename); } + + return result; +} + +function processFile(filename) +{ + let result = true; + + result = result && processCodeFile(filename); + + return result; } +function processCodeFile(filename) +{ + 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 = result && verifyPluginSdkComment(filename, headerExtensions.includes(filetype)); + + console.log(filename); + + 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 += "*/\n"; + + const buffer = Buffer.alloc(expected.length); + const fd = fs.openSync(filename, 'r'); + fs.readSync(fd, buffer, 0, expected.length, 0); + fs.closeSync(fd); + let actual = buffer.toString('utf8'); + actual.replace("\r\n", "\n").replace("\r", "\n"); + + let diff = findDifferenceLine(actual, expected) + if (diff) + { + console.log(`::error file=${filename},line=${diff},title=Invalid PSDK comment header::Expected comment:\`${expected}\``); + return false; + } + + return true; +} + +function findDifferenceLine(str1, str2) +{ + const lines1 = str1.split('\n'); + const lines2 = str2.split('\n'); + const maxLines = Math.max(lines1.length, lines2.length); + + for (let i = 0; i < maxLines; i++) + { + if (lines1[i] !== lines2[i]) + { + return i + 1; // 1-based line number + } + } + + return 0; +} /*const fs = require("fs"); const title = process.argv[2]; @@ -48,7 +142,7 @@ for (let line of lines) { hadOutput = true; const match = line.match(/^(.*)\((\d+),(\d+)\): (\w+) (.*) \[.*\]$/); if (match) { - // ::level file=filepath,line=linenumber,title=title::message + // ::level file=filename,line=linenumber,title=title::message const level = normalizeLevel(match[4]); console.log(`::${level} file=${escapeProperty(match[1])},line=${match[2]},title=${escapeProperty(title)}::${escapeData(match[5])}`); } else { @@ -57,6 +151,4 @@ for (let line of lines) { } // Step 4: Exit with error if there was anything in log (error or warning) -if (hadOutput) process.exit(1);*/ - -console.log("hello!"); \ No newline at end of file +if (hadOutput) */ From 9612a72f0ee3af45bf3837a9dfc08bf5231f60ca Mon Sep 17 00:00:00 2001 From: Miran Date: Sun, 26 Apr 2026 00:41:47 +0200 Subject: [PATCH 4/9] up --- .../scripts/Validate_File_Contents.js | 38 +++++++------------ 1 file changed, 14 insertions(+), 24 deletions(-) diff --git a/.github/workflows/scripts/Validate_File_Contents.js b/.github/workflows/scripts/Validate_File_Contents.js index c83eb288..29ccfe09 100644 --- a/.github/workflows/scripts/Validate_File_Contents.js +++ b/.github/workflows/scripts/Validate_File_Contents.js @@ -78,40 +78,30 @@ function verifyPluginSdkComment(filename, isHeader) 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 += "*/\n"; + expected += "*/"; - const buffer = Buffer.alloc(expected.length); + const buffer = Buffer.alloc(expected.length + 100); const fd = fs.openSync(filename, 'r'); - fs.readSync(fd, buffer, 0, expected.length, 0); + fs.readSync(fd, buffer, 0, expected.length + 100, 0); fs.closeSync(fd); let actual = buffer.toString('utf8'); - actual.replace("\r\n", "\n").replace("\r", "\n"); + actual = actual.replace(/\r\n/g, "\n"); - let diff = findDifferenceLine(actual, expected) - if (diff) + // compare lines + const actualLines = actual.split('\n'); + const expectedLines = expected.split('\n'); + for (let i = 0; i < expectedLines.length; i++) { - console.log(`::error file=${filename},line=${diff},title=Invalid PSDK comment header::Expected comment:\`${expected}\``); - return false; - } - - return true; -} - -function findDifferenceLine(str1, str2) -{ - const lines1 = str1.split('\n'); - const lines2 = str2.split('\n'); - const maxLines = Math.max(lines1.length, lines2.length); - - for (let i = 0; i < maxLines; i++) - { - if (lines1[i] !== lines2[i]) + if (actualLines[i] !== expectedLines[i]) { - return i + 1; // 1-based line number + console.log(actualLines) + + console.log(`::error file=${filename},line=${i+1},title=Invalid PSDK comment header::Found:\`${actualLines[i]}\`, expected \`${expectedLines[i]}\``); + return false; } } - return 0; + return true; } /*const fs = require("fs"); From 47ccf0832d4d59c206136a3dbd4d61fc00ed6fb9 Mon Sep 17 00:00:00 2001 From: Miran Date: Sun, 26 Apr 2026 01:00:01 +0200 Subject: [PATCH 5/9] up --- .../scripts/Validate_File_Contents.js | 138 +++++++----------- 1 file changed, 50 insertions(+), 88 deletions(-) diff --git a/.github/workflows/scripts/Validate_File_Contents.js b/.github/workflows/scripts/Validate_File_Contents.js index 29ccfe09..e1fc91de 100644 --- a/.github/workflows/scripts/Validate_File_Contents.js +++ b/.github/workflows/scripts/Validate_File_Contents.js @@ -2,9 +2,10 @@ const fs = require("fs"); const path = require("path"); let result = true; -//result = result && walkRecursive("./examples/"); -result = result && walkRecursive("./plugin_sa/"); +//result &= walkRecursive("./examples/"); +result &= walkRecursive("./plugin_sa/"); +console.log(result); if (!result) process.exit(1); // problem found @@ -16,12 +17,13 @@ function walkRecursive(dir) const files = fs.readdirSync(dir, { withFileTypes: true }); for (const file of files) { - const filename = path.join(dir, file.name); + let filename = path.join(dir, file.name); + filename = filename.split(path.sep).join('/'); if (file.isDirectory()) - walkRecursive(filename); + result &= walkRecursive(filename); else - result = result && processFile(filename); + result &= processFile(filename); } return result; @@ -29,116 +31,76 @@ function walkRecursive(dir) function processFile(filename) { - let result = true; + let result = true; - result = result && processCodeFile(filename); + result &= processCodeFile(filename); return result; } function processCodeFile(filename) { - const headerExtensions = [".h", ".hpp"]; - const sourceExtensions = [".c", ".cpp"]; + 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 - + return true; // not code file + let result = true; - - result = result && verifyPluginSdkComment(filename, headerExtensions.includes(filetype)); - console.log(filename); + 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); + if (filename.includes("/rw/")) // skip Renderware files + return true; + + 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 + let actual = buffer.toString('utf8'); + actual = actual.replace(/\r\n/g, "\n"); + + // compare lines const actualLines = actual.split('\n'); - const expectedLines = expected.split('\n'); + const expectedLines = expected.split('\n'); for (let i = 0; i < expectedLines.length; i++) - { + { if (actualLines[i] !== expectedLines[i]) - { - console.log(actualLines) - + { console.log(`::error file=${filename},line=${i+1},title=Invalid PSDK comment header::Found:\`${actualLines[i]}\`, expected \`${expectedLines[i]}\``); - return false; + return false; } } return true; } - -/*const fs = require("fs"); -const title = process.argv[2]; - -function escapeData(value) { - return value.replace(/%/g, "%25").replace(/\r/g, "%0D").replace(/\n/g, "%0A"); -} - -function escapeProperty(value) { - return escapeData(value).replace(/:/g, "%3A").replace(/,/g, "%2C"); -} - -function normalizeLevel(value) { - return ["error", "warning", "notice"].includes(value) ? value : "error"; -} - -// Step 1: Read, sort, and deduplicate lines -let lines = fs.readFileSync("output.log", "utf8").split(/\r?\n/); -lines.sort(); -lines = new Set(lines); - -// Step 2 & 3: Replace patterns and process each line for GitHub Actions output (from memory) -let hadOutput = false; -for (let line of lines) { - line = line.replace(/ \d>/g, "").replace(/.:\\a\\plugin-sdk\\plugin-sdk\\/g, ""); - if (!line.trim()) continue; - hadOutput = true; - const match = line.match(/^(.*)\((\d+),(\d+)\): (\w+) (.*) \[.*\]$/); - if (match) { - // ::level file=filename,line=linenumber,title=title::message - const level = normalizeLevel(match[4]); - console.log(`::${level} file=${escapeProperty(match[1])},line=${match[2]},title=${escapeProperty(title)}::${escapeData(match[5])}`); - } else { - console.log(`::error title=${escapeProperty(title)}::${escapeData(line)}`); - } -} - -// Step 4: Exit with error if there was anything in log (error or warning) -if (hadOutput) */ From a5f04dbe803b5692f098e83ee0bde7edaf0f7e11 Mon Sep 17 00:00:00 2001 From: Miran Date: Sun, 26 Apr 2026 01:03:25 +0200 Subject: [PATCH 6/9] up --- .github/workflows/scripts/run.cmd | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .github/workflows/scripts/run.cmd diff --git a/.github/workflows/scripts/run.cmd b/.github/workflows/scripts/run.cmd new file mode 100644 index 00000000..0103dc7d --- /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 From 522b8ff7e09df16dcc7b1922e01cc456d6a4a674 Mon Sep 17 00:00:00 2001 From: Miran Date: Sun, 26 Apr 2026 01:06:14 +0200 Subject: [PATCH 7/9] test --- .github/workflows/scripts/Validate_File_Contents.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/scripts/Validate_File_Contents.js b/.github/workflows/scripts/Validate_File_Contents.js index e1fc91de..2dfc4cba 100644 --- a/.github/workflows/scripts/Validate_File_Contents.js +++ b/.github/workflows/scripts/Validate_File_Contents.js @@ -97,7 +97,7 @@ function verifyPluginSdkComment(filename, isHeader) { if (actualLines[i] !== expectedLines[i]) { - console.log(`::error file=${filename},line=${i+1},title=Invalid PSDK comment header::Found:\`${actualLines[i]}\`, expected \`${expectedLines[i]}\``); + console.log(`::error file=${filename},line=${i+1},title=Invalid PSDK comment header::Found:"${actualLines[i]}", expected \`\`\`${expectedLines[i]}\``); return false; } } From 6f27fe34238482c00806c0481fd8bf5d9bf777aa Mon Sep 17 00:00:00 2001 From: Miran Date: Sun, 26 Apr 2026 01:10:30 +0200 Subject: [PATCH 8/9] up --- .github/workflows/scripts/Validate_File_Contents.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/scripts/Validate_File_Contents.js b/.github/workflows/scripts/Validate_File_Contents.js index 2dfc4cba..bc88723f 100644 --- a/.github/workflows/scripts/Validate_File_Contents.js +++ b/.github/workflows/scripts/Validate_File_Contents.js @@ -40,6 +40,9 @@ function processFile(filename) 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(); @@ -56,9 +59,6 @@ function processCodeFile(filename) function verifyPluginSdkComment(filename, isHeader) { - if (filename.includes("/rw/")) // skip Renderware files - return true; - let expected = "/*\n"; expected += " Plugin-SDK (Grand Theft Auto "; @@ -97,7 +97,7 @@ function verifyPluginSdkComment(filename, isHeader) { if (actualLines[i] !== expectedLines[i]) { - console.log(`::error file=${filename},line=${i+1},title=Invalid PSDK comment header::Found:"${actualLines[i]}", expected \`\`\`${expectedLines[i]}\``); + console.log(`::error file=${filename},line=${i+1},title=Invalid PSDK comment header::Found "${actualLines[i]}", expected "${expectedLines[i]}"`); return false; } } From 57907b10375a7cc87cfbd87423165be94af007d4 Mon Sep 17 00:00:00 2001 From: Miran Date: Sat, 25 Apr 2026 15:21:56 +0200 Subject: [PATCH 9/9] Style unification of file info comments --- examples/Neon/KeyCheck.cpp | 8 ++++---- examples/Neon/KeyCheck.h | 8 ++++---- hooking/Hooking.Patterns.h | 1 - injector/gvm/translator.hpp | 1 - plugin_II/game_II/CAudioManager.cpp | 1 - plugin_II/game_II/CAudioManager.h | 1 - plugin_II/game_II/CCar.cpp | 1 - plugin_II/game_II/CCar.h | 1 - plugin_II/game_II/CCarManager.cpp | 1 - plugin_II/game_II/CCarManager.h | 1 - plugin_II/game_II/CFileMgr.cpp | 1 - plugin_II/game_II/CFileMgr.h | 1 - plugin_II/game_II/CFont.h | 1 - plugin_II/game_II/CGame.cpp | 1 - plugin_II/game_II/CGame.h | 1 - plugin_II/game_II/CKeybrd.cpp | 1 - plugin_II/game_II/CKeybrd.h | 1 - plugin_II/game_II/CMenuManager.cpp | 1 - plugin_II/game_II/CMenuManager.h | 1 - plugin_II/game_II/CObject.cpp | 1 - plugin_II/game_II/CPed.cpp | 1 - plugin_II/game_II/CPed.h | 1 - plugin_II/game_II/CPedManager.cpp | 1 - plugin_II/game_II/CPedManager.h | 1 - plugin_II/game_II/CPhysics.cpp | 1 - plugin_II/game_II/CPlayerPed.cpp | 1 - plugin_II/game_II/CPlayerPed.h | 1 - plugin_II/game_II/CPopulation.h | 1 - plugin_II/game_II/CRect.h | 1 - plugin_II/game_II/CReplay.cpp | 1 - plugin_II/game_II/CReplay.h | 1 - plugin_II/game_II/CSprite.cpp | 1 - plugin_II/game_II/CSprite2d.cpp | 1 - plugin_II/game_II/CSprite2d.h | 1 - plugin_II/game_II/CStyle.cpp | 1 - plugin_II/game_II/CStyle.h | 1 - plugin_II/game_II/CTheScripts.cpp | 1 - plugin_II/game_II/CWeapon.cpp | 1 - plugin_II/game_II/CWeapon.h | 1 - plugin_II/game_II/CWorld.h | 1 - plugin_II/game_II/GBH.h | 1 - plugin_II/game_II/cDMAudio.cpp | 1 - plugin_II/game_II/cDMAudio.h | 1 - plugin_II/game_II/cSampleManager.cpp | 1 - plugin_II/game_II/cSampleManager.h | 1 - plugin_II/game_II/common.cpp | 1 - plugin_II/game_II/common.h | 1 - plugin_II/game_II/tTexture.h | 1 - plugin_II/game_II/tVideo.cpp | 1 - plugin_II/game_II/tVideo.h | 1 - plugin_II/plugin_II.h | 1 - plugin_III/game_III/AnimBlendFrameData.h | 1 - plugin_III/game_III/C2dEffect.h | 1 - plugin_III/game_III/C2deffectsModelInfo.h | 1 - plugin_III/game_III/C3dMarker.h | 1 - plugin_III/game_III/C3dMarkers.h | 1 - plugin_III/game_III/CAccident.h | 1 - plugin_III/game_III/CAccidentManager.h | 1 - plugin_III/game_III/CAnimBlendAssocGroup.h | 1 - plugin_III/game_III/CAnimBlendAssociation.h | 1 - plugin_III/game_III/CAnimBlendClumpData.h | 1 - plugin_III/game_III/CAnimBlendHierarchy.h | 1 - plugin_III/game_III/CAnimBlendNode.h | 1 - plugin_III/game_III/CAnimBlendSequence.h | 1 - plugin_III/game_III/CAnimBlock.h | 1 - plugin_III/game_III/CAnimManager.h | 1 - plugin_III/game_III/CAnimationStyleDescriptor.h | 1 - plugin_III/game_III/CAntenna.h | 1 - plugin_III/game_III/CAntennas.h | 1 - plugin_III/game_III/CAudioHydrant.h | 1 - plugin_III/game_III/CAutoPilot.cpp | 8 ++++---- plugin_III/game_III/CAutoPilot.h | 9 ++++----- plugin_III/game_III/CBox.h | 1 - plugin_III/game_III/CBridge.h | 1 - plugin_III/game_III/CBrightLight.h | 1 - plugin_III/game_III/CBrightLights.h | 1 - plugin_III/game_III/CBuilding.h | 1 - plugin_III/game_III/CBulletInfo.h | 1 - plugin_III/game_III/CBulletTrace.h | 1 - plugin_III/game_III/CBulletTraces.h | 1 - plugin_III/game_III/CCam.h | 1 - plugin_III/game_III/CCamera.h | 1 - plugin_III/game_III/CCarAI.h | 1 - plugin_III/game_III/CCarCtrl.h | 1 - plugin_III/game_III/CCheat.h | 1 - plugin_III/game_III/CClock.h | 1 - plugin_III/game_III/CClouds.h | 1 - plugin_III/game_III/CClumpModelInfo.h | 1 - plugin_III/game_III/CColBox.h | 1 - plugin_III/game_III/CColLine.h | 1 - plugin_III/game_III/CColModel.h | 1 - plugin_III/game_III/CColPoint.h | 1 - plugin_III/game_III/CColSphere.h | 1 - plugin_III/game_III/CColTriangle.h | 1 - plugin_III/game_III/CColTrianglePlane.h | 1 - plugin_III/game_III/CCollision.h | 1 - plugin_III/game_III/CControllerState.cpp | 8 ++++---- plugin_III/game_III/CControllerState.h | 9 ++++----- plugin_III/game_III/CCopPed.h | 1 - plugin_III/game_III/CCoronas.h | 1 - plugin_III/game_III/CCrane.h | 1 - plugin_III/game_III/CCranes.h | 1 - plugin_III/game_III/CCredits.h | 1 - plugin_III/game_III/CCurrentVehicle.h | 1 - plugin_III/game_III/CCurves.h | 1 - plugin_III/game_III/CCutsceneHead.h | 1 - plugin_III/game_III/CCutsceneMgr.h | 1 - plugin_III/game_III/CCutsceneObject.h | 1 - plugin_III/game_III/CDarkel.h | 1 - plugin_III/game_III/CDate.h | 1 - plugin_III/game_III/CDigitalClock.h | 1 - plugin_III/game_III/CDirectory.h | 1 - plugin_III/game_III/CDoor.h | 1 - plugin_III/game_III/CDraw.h | 1 - plugin_III/game_III/CDummy.h | 1 - plugin_III/game_III/CDummyObject.h | 1 - plugin_III/game_III/CEmergencyPed.h | 1 - plugin_III/game_III/CEntryInfoList.h | 1 - plugin_III/game_III/CEventList.h | 1 - plugin_III/game_III/CExplosion.h | 1 - plugin_III/game_III/CFallingGlassPane.h | 1 - plugin_III/game_III/CFileLoader.h | 9 ++++----- plugin_III/game_III/CFileMgr.h | 1 - plugin_III/game_III/CFire.h | 1 - plugin_III/game_III/CFireManager.h | 1 - plugin_III/game_III/CFont.h | 1 - plugin_III/game_III/CFontDetails.cpp | 8 ++++---- plugin_III/game_III/CFontDetails.h | 9 ++++----- plugin_III/game_III/CGame.h | 1 - plugin_III/game_III/CGameLogic.h | 1 - plugin_III/game_III/CGangInfo.h | 1 - plugin_III/game_III/CGangs.h | 1 - plugin_III/game_III/CGarage.h | 1 - plugin_III/game_III/CGarages.h | 1 - plugin_III/game_III/CGeneral.h | 1 - plugin_III/game_III/CGlass.h | 1 - plugin_III/game_III/CIniFile.h | 1 - plugin_III/game_III/CInstance.h | 1 - plugin_III/game_III/CKeyboardState.cpp | 8 ++++---- plugin_III/game_III/CKeyboardState.h | 11 ++++------- plugin_III/game_III/CLines.h | 1 - plugin_III/game_III/CLink.h | 1 - plugin_III/game_III/CLinkList.h | 1 - plugin_III/game_III/CMBlur.h | 1 - plugin_III/game_III/CMessages.h | 1 - plugin_III/game_III/CMissionCleanup.h | 1 - plugin_III/game_III/CMloModelInfo.h | 1 - plugin_III/game_III/CMoneyMessage.h | 1 - plugin_III/game_III/CMoneyMessages.h | 1 - plugin_III/game_III/CMotionBlurStreaks.h | 1 - plugin_III/game_III/CMouseControllerState.h | 1 - plugin_III/game_III/CMousePointerStateHelper.h | 1 - plugin_III/game_III/CMovie.h | 1 - plugin_III/game_III/CMovingThing.h | 1 - plugin_III/game_III/CMovingThings.h | 1 - plugin_III/game_III/CNodeAddress.h | 1 - plugin_III/game_III/CObject.h | 1 - plugin_III/game_III/CObjectData.h | 1 - plugin_III/game_III/COneSheet.h | 1 - plugin_III/game_III/COnscreenTimer.h | 1 - plugin_III/game_III/COnscreenTimerEntry.h | 1 - plugin_III/game_III/CPacManPickup.h | 1 - plugin_III/game_III/CPacManPickups.h | 1 - plugin_III/game_III/CPad.h | 1 - plugin_III/game_III/CPager.h | 1 - plugin_III/game_III/CParticle.h | 1 - plugin_III/game_III/CParticleObject.h | 1 - plugin_III/game_III/CPathFind.h | 1 - plugin_III/game_III/CPathNode.h | 1 - plugin_III/game_III/CPathSplines.h | 1 - plugin_III/game_III/CPedIK.h | 1 - plugin_III/game_III/CPedModelInfo.h | 1 - plugin_III/game_III/CPedPath.h | 1 - plugin_III/game_III/CPedPathNode.h | 1 - plugin_III/game_III/CPedPlacement.h | 1 - plugin_III/game_III/CPedStats.h | 1 - plugin_III/game_III/CPedType.cpp | 8 ++++---- plugin_III/game_III/CPedType.h | 9 ++++----- plugin_III/game_III/CPhone.h | 1 - plugin_III/game_III/CPhoneInfo.h | 1 - plugin_III/game_III/CPickup.h | 1 - plugin_III/game_III/CPickups.h | 1 - plugin_III/game_III/CPlaceName.h | 1 - plugin_III/game_III/CPlayerInfo.h | 1 - plugin_III/game_III/CPlayerPed.h | 1 - plugin_III/game_III/CPlayerSkin.h | 1 - plugin_III/game_III/CPointLights.cpp | 8 ++++---- plugin_III/game_III/CPointLights.h | 9 ++++----- plugin_III/game_III/CPools.h | 1 - plugin_III/game_III/CPopulation.h | 1 - plugin_III/game_III/CProjectile.h | 1 - plugin_III/game_III/CProjectileInfo.h | 1 - plugin_III/game_III/CQuaternion.h | 1 - plugin_III/game_III/CRadar.h | 1 - plugin_III/game_III/CRange2D.h | 1 - plugin_III/game_III/CRecordDataForChase.h | 1 - plugin_III/game_III/CRecordDataForGame.h | 1 - plugin_III/game_III/CRect.h | 1 - plugin_III/game_III/CReference.h | 1 - plugin_III/game_III/CReferences.h | 1 - plugin_III/game_III/CRegisteredCorona.h | 1 - plugin_III/game_III/CRegisteredMotionBlurStreak.h | 1 - plugin_III/game_III/CRegisteredShinyText.h | 1 - plugin_III/game_III/CRemote.h | 1 - plugin_III/game_III/CRestart.h | 1 - plugin_III/game_III/CRoadBlocks.h | 1 - plugin_III/game_III/CRouteNode.h | 1 - plugin_III/game_III/CRubbish.h | 1 - plugin_III/game_III/CScene.h | 1 - plugin_III/game_III/CSceneEdit.h | 1 - plugin_III/game_III/CScrollBar.h | 1 - plugin_III/game_III/CSector.h | 1 - plugin_III/game_III/CShadows.h | 1 - plugin_III/game_III/CShinyTexts.h | 1 - plugin_III/game_III/CShotInfo.h | 1 - plugin_III/game_III/CSimpleModelInfo.h | 1 - plugin_III/game_III/CSkidmark.h | 1 - plugin_III/game_III/CSkidmarks.h | 1 - plugin_III/game_III/CSpecialFX.h | 1 - plugin_III/game_III/CSpecialParticleStuff.h | 1 - plugin_III/game_III/CSphere.h | 1 - plugin_III/game_III/CSprite.h | 1 - plugin_III/game_III/CSprite2d.h | 1 - plugin_III/game_III/CStats.cpp | 8 ++++---- plugin_III/game_III/CStats.h | 1 - plugin_III/game_III/CStoredCar.h | 1 - plugin_III/game_III/CStoredCollPoly.h | 1 - plugin_III/game_III/CStreamingInfo.cpp | 8 ++++---- plugin_III/game_III/CStuckCarCheck.h | 1 - plugin_III/game_III/CSurfaceTable.h | 1 - plugin_III/game_III/CTempNode.h | 1 - plugin_III/game_III/CText.h | 1 - plugin_III/game_III/CTheCarGenerators.h | 1 - plugin_III/game_III/CTheScripts.h | 1 - plugin_III/game_III/CTimeCycle.h | 1 - plugin_III/game_III/CTimeModelInfo.h | 1 - plugin_III/game_III/CTimeStep.h | 1 - plugin_III/game_III/CTimer.h | 1 - plugin_III/game_III/CTowerClock.h | 1 - plugin_III/game_III/CTrafficLights.h | 1 - plugin_III/game_III/CTrainCamNode.h | 1 - plugin_III/game_III/CTrainDoor.h | 1 - plugin_III/game_III/CTreadable.h | 1 - plugin_III/game_III/CTxdStore.h | 1 - plugin_III/game_III/CUpsideDownCarCheck.h | 1 - plugin_III/game_III/CUserDisplay.h | 1 - plugin_III/game_III/CVisibilityPlugins.h | 1 - plugin_III/game_III/CWanted.h | 1 - plugin_III/game_III/CWaterCannon.h | 1 - plugin_III/game_III/CWaterCannons.h | 1 - plugin_III/game_III/CWeaponEffects.cpp | 8 ++++---- plugin_III/game_III/CWeaponEffects.h | 9 ++++----- plugin_III/game_III/CWeaponInfo.cpp | 8 ++++---- plugin_III/game_III/CWeather.h | 1 - plugin_III/game_III/CXtraCompsModelInfo.h | 1 - plugin_III/game_III/CZone.h | 1 - plugin_III/game_III/CZoneInfo.h | 1 - plugin_III/game_III/C_PcSave.h | 1 - plugin_III/game_III/GenericGameStorage.h | 1 - plugin_III/game_III/NodeName.h | 1 - plugin_III/game_III/RenderBuffer.h | 1 - plugin_III/game_III/RpAnimBlend.h | 1 - plugin_III/game_III/RwObjectNameIdAssocation.h | 1 - plugin_III/game_III/TxdDef.h | 1 - plugin_III/game_III/cAudioCollision.h | 1 - plugin_III/game_III/cAudioCollisionManager.h | 1 - plugin_III/game_III/cAudioManager.h | 1 - plugin_III/game_III/cAudioScriptObject.h | 1 - plugin_III/game_III/cDMAudio.h | 1 - plugin_III/game_III/cMusicManager.h | 1 - plugin_III/game_III/cParticleSystemMgr.h | 1 - plugin_III/game_III/cTransmission.h | 1 - plugin_III/game_III/common.h | 1 - plugin_III/game_III/enums/eCoronaType.h | 8 ++++---- plugin_III/game_III/enums/eCrimeType.h | 8 ++++---- plugin_III/game_III/enums/ePedModel.h | 8 ++++---- plugin_III/game_III/enums/eSceneCommands.h | 8 ++++---- plugin_III/game_III/enums/eWeaponModel.h | 8 ++++---- plugin_III/game_III/enums/eWeaponType.h | 8 ++++---- plugin_III/game_III/enums/eWeather.h | 8 ++++---- plugin_III/game_III/enums/eWheelModel.h | 8 ++++---- plugin_III/game_III/tColSurface.h | 1 - plugin_III/game_III/tHandlingData.h | 1 - plugin_III/game_III/tParticleSystemData.h | 1 - plugin_III/game_III/tParticleType.h | 1 - plugin_III/game_III/tTransmissionGear.h | 9 ++++----- plugin_IV/game_IV/CBaseDC.h | 1 - plugin_IV/game_IV/CColPoint.h | 1 - plugin_IV/game_IV/CDrawRadarCircleDC.h | 1 - plugin_IV/game_IV/CWeaponInfo.h | 1 - plugin_IV/game_IV/CWorld.cpp | 1 - plugin_IV/game_IV/CWorld.h | 1 - plugin_IV/game_IV/common.cpp | 1 - plugin_IV/plugin_IV.h | 1 - plugin_iii_unreal/game_iii_unreal/common.h | 1 - plugin_iii_unreal/plugin_III_unreal.h | 1 - plugin_sa/game_sa/AnimAssociationData.h | 1 - plugin_sa/game_sa/AnimBlendFrameData.h | 1 - plugin_sa/game_sa/CAEAudioEntity.h | 1 - plugin_sa/game_sa/CAECollisionAudioEntity.cpp | 1 - plugin_sa/game_sa/CAECollisionAudioEntity.h | 1 - plugin_sa/game_sa/CAECutsceneTrackManager.cpp | 1 - plugin_sa/game_sa/CAECutsceneTrackManager.h | 1 - plugin_sa/game_sa/CAEDoorAudioEntity.cpp | 1 - plugin_sa/game_sa/CAEDoorAudioEntity.h | 1 - plugin_sa/game_sa/CAEExplosionAudioEntity.h | 1 - plugin_sa/game_sa/CAEFireAudioEntity.h | 1 - plugin_sa/game_sa/CAEFrontendAudioEntity.cpp | 1 - plugin_sa/game_sa/CAEFrontendAudioEntity.h | 1 - plugin_sa/game_sa/CAEPedAudioEntity.h | 1 - plugin_sa/game_sa/CAEPedlessSpeechAudioEntity.h | 1 - plugin_sa/game_sa/CAEPoliceScannerAudioEntity.h | 1 - plugin_sa/game_sa/CAEScriptAudioEntity.cpp | 1 - plugin_sa/game_sa/CAEScriptAudioEntity.h | 1 - plugin_sa/game_sa/CAESound.h | 1 - plugin_sa/game_sa/CAETwinLoopSoundEntity.cpp | 1 - plugin_sa/game_sa/CAEVehicleAudioEntity.h | 1 - plugin_sa/game_sa/CAEWeaponAudioEntity.cpp | 8 ++++---- plugin_sa/game_sa/CAEWeaponAudioEntity.h | 1 - plugin_sa/game_sa/CAnimBlendAssocGroup.cpp | 9 ++++----- plugin_sa/game_sa/CAnimBlendAssociation.h | 1 - plugin_sa/game_sa/CAnimBlendClumpData.h | 1 - plugin_sa/game_sa/CAnimBlendHierarchy.cpp | 9 ++++----- plugin_sa/game_sa/CAnimBlendHierarchy.h | 1 - plugin_sa/game_sa/CAnimBlendNode.cpp | 1 - plugin_sa/game_sa/CAnimBlendNode.h | 1 - plugin_sa/game_sa/CAnimBlendSequence.cpp | 9 ++++----- plugin_sa/game_sa/CAnimBlendSequence.h | 1 - plugin_sa/game_sa/CAnimBlendStaticAssociation.h | 1 - plugin_sa/game_sa/CAnimBlock.h | 1 - plugin_sa/game_sa/CAnimManager.cpp | 8 ++++---- plugin_sa/game_sa/CAnimManager.h | 1 - plugin_sa/game_sa/CAnimationStyleDescriptor.h | 1 - plugin_sa/game_sa/CAttractorScanner.h | 1 - plugin_sa/game_sa/CAudioEngine.cpp | 1 - plugin_sa/game_sa/CAudioEngine.h | 1 - plugin_sa/game_sa/CAudioLink.cpp | 1 - plugin_sa/game_sa/CAudioLink.h | 1 - plugin_sa/game_sa/CAutoPilot.h | 1 - plugin_sa/game_sa/CBirds.h | 1 - plugin_sa/game_sa/CBouncingPanel.h | 1 - plugin_sa/game_sa/CBoundingBox.h | 1 - plugin_sa/game_sa/CBox.h | 1 - plugin_sa/game_sa/CBulletInfo.h | 1 - plugin_sa/game_sa/CCam.h | 9 ++++----- plugin_sa/game_sa/CCamPathSplines.h | 1 - plugin_sa/game_sa/CCamera.cpp | 8 ++++---- plugin_sa/game_sa/CCamera.h | 9 ++++----- plugin_sa/game_sa/CCarAI.cpp | 9 ++++----- plugin_sa/game_sa/CCarAI.h | 8 ++++---- plugin_sa/game_sa/CCarEnterExit.h | 1 - plugin_sa/game_sa/CCarGenerator.cpp | 8 ++++---- plugin_sa/game_sa/CCarGenerator.h | 1 - plugin_sa/game_sa/CCarPathLink.h | 1 - plugin_sa/game_sa/CCarPathLinkAddress.h | 1 - plugin_sa/game_sa/CCheat.h | 1 - plugin_sa/game_sa/CCivilianPed.h | 1 - plugin_sa/game_sa/CClock.h | 1 - plugin_sa/game_sa/CClothes.cpp | 1 - plugin_sa/game_sa/CClothesBuilder.cpp | 1 - plugin_sa/game_sa/CClouds.h | 1 - plugin_sa/game_sa/CColBox.h | 1 - plugin_sa/game_sa/CColLine.h | 1 - plugin_sa/game_sa/CColModel.h | 1 - plugin_sa/game_sa/CColPoint.h | 1 - plugin_sa/game_sa/CColSphere.h | 1 - plugin_sa/game_sa/CColTriangle.h | 1 - plugin_sa/game_sa/CColTrianglePlane.h | 1 - plugin_sa/game_sa/CCollision.h | 1 - plugin_sa/game_sa/CCollisionData.h | 1 - plugin_sa/game_sa/CCollisionEventScanner.h | 1 - plugin_sa/game_sa/CColourSet.h | 9 ++++----- plugin_sa/game_sa/CCopPed.h | 1 - plugin_sa/game_sa/CCoronas.h | 1 - plugin_sa/game_sa/CCover.h | 1 - plugin_sa/game_sa/CCoverPoint.h | 1 - plugin_sa/game_sa/CCredits.h | 1 - plugin_sa/game_sa/CCreepingFire.h | 1 - plugin_sa/game_sa/CCrimeBeingQd.h | 1 - plugin_sa/game_sa/CCustomCarEnvMapPipeline.cpp | 8 ++++---- plugin_sa/game_sa/CCustomCarEnvMapPipeline.h | 1 - plugin_sa/game_sa/CCustomCarPlateMgr.h | 1 - plugin_sa/game_sa/CCutsceneObject.h | 1 - plugin_sa/game_sa/CDarkel.h | 1 - plugin_sa/game_sa/CDate.h | 1 - plugin_sa/game_sa/CDoor.h | 1 - plugin_sa/game_sa/CEmergencyPed.h | 1 - plugin_sa/game_sa/CEntityScanner.h | 1 - plugin_sa/game_sa/CEntryExit.h | 1 - plugin_sa/game_sa/CEntryExitManager.h | 1 - plugin_sa/game_sa/CEventGroup.h | 1 - plugin_sa/game_sa/CEventHandler.h | 1 - plugin_sa/game_sa/CEventScanner.h | 1 - plugin_sa/game_sa/CExplosion.h | 9 ++++----- plugin_sa/game_sa/CFileCarGenerator.h | 1 - plugin_sa/game_sa/CFileLoader.h | 1 - plugin_sa/game_sa/CFileObjectInstance.h | 1 - plugin_sa/game_sa/CFire.h | 1 - plugin_sa/game_sa/CFireManager.h | 1 - plugin_sa/game_sa/CFont.h | 1 - plugin_sa/game_sa/CForbiddenArea.h | 1 - plugin_sa/game_sa/CFormation.h | 1 - plugin_sa/game_sa/CGame.h | 1 - plugin_sa/game_sa/CGamma.h | 1 - plugin_sa/game_sa/CGangInfo.h | 1 - plugin_sa/game_sa/CGangWars.h | 1 - plugin_sa/game_sa/CGangWarsSaveStructure.h | 1 - plugin_sa/game_sa/CGangs.h | 1 - plugin_sa/game_sa/CGeneral.h | 1 - plugin_sa/game_sa/CGenericGameStorage.h | 1 - plugin_sa/game_sa/CGridRef.h | 1 - plugin_sa/game_sa/CHandObject.h | 1 - plugin_sa/game_sa/CHeli.h | 1 - plugin_sa/game_sa/CHud.h | 1 - plugin_sa/game_sa/CIniFile.h | 1 - plugin_sa/game_sa/CIplStore.h | 1 - plugin_sa/game_sa/CKeyGen.h | 1 - plugin_sa/game_sa/CLink.h | 1 - plugin_sa/game_sa/CLinkList.h | 1 - plugin_sa/game_sa/CLoadingScreen.cpp | 1 - plugin_sa/game_sa/CLocalisation.h | 1 - plugin_sa/game_sa/CMatrixLink.h | 1 - plugin_sa/game_sa/CMentalState.h | 1 - plugin_sa/game_sa/CMenuManager.cpp | 1 - plugin_sa/game_sa/CMenuManager.h | 1 - plugin_sa/game_sa/CMessages.h | 1 - plugin_sa/game_sa/CMonsterTruck.h | 1 - plugin_sa/game_sa/CNodeAddress.h | 1 - plugin_sa/game_sa/CObject.h | 1 - plugin_sa/game_sa/CObjectInfo.h | 1 - plugin_sa/game_sa/COctTree.h | 1 - plugin_sa/game_sa/COctTreeBase.h | 1 - plugin_sa/game_sa/COnscreenCounterEntry.h | 1 - plugin_sa/game_sa/COnscreenTimer.h | 1 - plugin_sa/game_sa/COnscreenTimerEntry.h | 1 - plugin_sa/game_sa/CPathIntersectionInfo.h | 1 - plugin_sa/game_sa/CPathNode.h | 1 - plugin_sa/game_sa/CPedAcquaintance.h | 1 - plugin_sa/game_sa/CPedClothesDesc.cpp | 1 - plugin_sa/game_sa/CPedClothesDesc.h | 1 - plugin_sa/game_sa/CPedDamageResponse.h | 1 - plugin_sa/game_sa/CPedDamageResponseCalculator.h | 1 - plugin_sa/game_sa/CPedGroup.h | 1 - plugin_sa/game_sa/CPedGroupIntelligence.h | 1 - plugin_sa/game_sa/CPedGroupMembership.h | 1 - plugin_sa/game_sa/CPedGroupPlacer.h | 1 - plugin_sa/game_sa/CPedGroups.h | 1 - plugin_sa/game_sa/CPedIK.cpp | 9 ++++----- plugin_sa/game_sa/CPedIK.h | 1 - plugin_sa/game_sa/CPedIntelligence.h | 1 - plugin_sa/game_sa/CPedList.h | 1 - plugin_sa/game_sa/CPedPlacement.h | 1 - plugin_sa/game_sa/CPedStuckChecker.h | 1 - plugin_sa/game_sa/CPedTaskPair.h | 1 - plugin_sa/game_sa/CPedType.cpp | 8 ++++---- plugin_sa/game_sa/CPlayerData.h | 1 - plugin_sa/game_sa/CPlayerInfo.cpp | 8 ++++---- plugin_sa/game_sa/CPlayerPed.h | 1 - plugin_sa/game_sa/CPointLights.h | 1 - plugin_sa/game_sa/CPointList.h | 1 - plugin_sa/game_sa/CPolyBunch.h | 1 - plugin_sa/game_sa/CPools.h | 9 ++++----- plugin_sa/game_sa/CPopCycle.cpp | 8 ++++---- plugin_sa/game_sa/CProjectile.h | 1 - plugin_sa/game_sa/CPtrNodeDoubleLink.h | 1 - plugin_sa/game_sa/CPtrNodeSingleLink.h | 1 - plugin_sa/game_sa/CQuadBike.h | 1 - plugin_sa/game_sa/CQuadTreeNode.h | 1 - plugin_sa/game_sa/CQuaternion.h | 1 - plugin_sa/game_sa/CQueuedMode.h | 1 - plugin_sa/game_sa/CRadar.h | 9 ++++----- plugin_sa/game_sa/CRealTimeShadow.h | 1 - plugin_sa/game_sa/CRect.h | 1 - plugin_sa/game_sa/CReference.h | 1 - plugin_sa/game_sa/CReferences.h | 1 - plugin_sa/game_sa/CRegisteredCorona.h | 1 - plugin_sa/game_sa/CRoadBlocks.cpp | 1 - plugin_sa/game_sa/CRoadBlocks.h | 1 - plugin_sa/game_sa/CRope.h | 1 - plugin_sa/game_sa/CRunningScript.cpp | 8 ++++---- plugin_sa/game_sa/CScene.h | 1 - plugin_sa/game_sa/CScriptResourceManager.h | 1 - plugin_sa/game_sa/CScriptsForBrains.h | 1 - plugin_sa/game_sa/CSetPiece.h | 1 - plugin_sa/game_sa/CSetPieces.h | 1 - plugin_sa/game_sa/CShadowCamera.h | 1 - plugin_sa/game_sa/CShadows.h | 1 - plugin_sa/game_sa/CShopping.cpp | 8 ++++---- plugin_sa/game_sa/CShotInfo.h | 1 - plugin_sa/game_sa/CSimpleTransform.h | 1 - plugin_sa/game_sa/CSpecialPlateHandler.h | 1 - plugin_sa/game_sa/CSphere.h | 1 - plugin_sa/game_sa/CSprite.h | 1 - plugin_sa/game_sa/CSprite2d.h | 1 - plugin_sa/game_sa/CStats.h | 1 - plugin_sa/game_sa/CStoredCollPoly.h | 1 - plugin_sa/game_sa/CStreamedScripts.h | 1 - plugin_sa/game_sa/CStuckCarCheck.h | 1 - plugin_sa/game_sa/CStuntJumpManager.cpp | 8 ++++---- plugin_sa/game_sa/CTagManager.cpp | 8 ++++---- plugin_sa/game_sa/CTaskComplex.h | 1 - plugin_sa/game_sa/CTaskComplexClimb.cpp | 8 ++++---- plugin_sa/game_sa/CTaskComplexClimb.h | 9 ++++----- plugin_sa/game_sa/CTaskComplexCopInCar.cpp | 9 ++++----- plugin_sa/game_sa/CTaskComplexCopInCar.h | 1 - plugin_sa/game_sa/CTaskComplexDie.cpp | 8 ++++---- plugin_sa/game_sa/CTaskComplexDie.h | 9 ++++----- plugin_sa/game_sa/CTaskComplexDriveFireTruck.cpp | 8 ++++---- plugin_sa/game_sa/CTaskComplexDriveFireTruck.h | 12 ++++++------ plugin_sa/game_sa/CTaskComplexEnterBoatAsDriver.cpp | 9 ++++----- plugin_sa/game_sa/CTaskComplexEnterBoatAsDriver.h | 9 ++++----- plugin_sa/game_sa/CTaskComplexEnterCar.cpp | 8 ++++---- plugin_sa/game_sa/CTaskComplexEnterCar.h | 9 ++++----- plugin_sa/game_sa/CTaskComplexEnterCarAsDriver.cpp | 8 ++++---- plugin_sa/game_sa/CTaskComplexEnterCarAsDriver.h | 9 ++++----- .../game_sa/CTaskComplexEnterCarAsPassenger.cpp | 8 ++++---- plugin_sa/game_sa/CTaskComplexEnterCarAsPassenger.h | 9 ++++----- plugin_sa/game_sa/CTaskComplexFacial.cpp | 9 ++++----- plugin_sa/game_sa/CTaskComplexFacial.h | 9 ++++----- plugin_sa/game_sa/CTaskComplexJump.cpp | 8 ++++---- plugin_sa/game_sa/CTaskComplexJump.h | 9 ++++----- plugin_sa/game_sa/CTaskComplexKillPedFromBoat.cpp | 9 ++++----- plugin_sa/game_sa/CTaskComplexKillPedFromBoat.h | 1 - plugin_sa/game_sa/CTaskComplexKillPedOnFoot.h | 1 - plugin_sa/game_sa/CTaskComplexLeaveCar.cpp | 9 ++++----- plugin_sa/game_sa/CTaskComplexLeaveCar.h | 9 ++++----- .../game_sa/CTaskComplexMedicTreatInjuredPed.cpp | 8 ++++---- plugin_sa/game_sa/CTaskComplexMedicTreatInjuredPed.h | 9 ++++----- plugin_sa/game_sa/CTaskComplexPlayHandSignalAnim.h | 1 - plugin_sa/game_sa/CTaskComplexProstituteSolicit.h | 1 - plugin_sa/game_sa/CTaskComplexSequence.h | 1 - plugin_sa/game_sa/CTaskComplexStuckInAir.cpp | 9 ++++----- plugin_sa/game_sa/CTaskComplexStuckInAir.h | 9 ++++----- plugin_sa/game_sa/CTaskComplexSunbathe.cpp | 8 ++++---- plugin_sa/game_sa/CTaskComplexSunbathe.h | 9 ++++----- plugin_sa/game_sa/CTaskComplexUseMobilePhone.cpp | 8 ++++---- plugin_sa/game_sa/CTaskComplexUseMobilePhone.h | 9 ++++----- plugin_sa/game_sa/CTaskComplexWander.h | 1 - plugin_sa/game_sa/CTaskComplexWanderStandard.h | 1 - plugin_sa/game_sa/CTaskManager.h | 1 - plugin_sa/game_sa/CTaskSimple.h | 1 - plugin_sa/game_sa/CTaskSimpleAnim.h | 1 - plugin_sa/game_sa/CTaskSimpleCarSetPedInAsDriver.h | 1 - .../game_sa/CTaskSimpleCarSetPedInAsPassenger.cpp | 8 ++++---- .../game_sa/CTaskSimpleCarSetPedInAsPassenger.h | 1 - plugin_sa/game_sa/CTaskSimpleCarSetPedOut.cpp | 8 ++++---- plugin_sa/game_sa/CTaskSimpleCarSetPedOut.h | 1 - plugin_sa/game_sa/CTaskSimpleChoking.cpp | 8 ++++---- plugin_sa/game_sa/CTaskSimpleChoking.h | 9 ++++----- plugin_sa/game_sa/CTaskSimpleClimb.h | 1 - plugin_sa/game_sa/CTaskSimpleDuck.h | 1 - plugin_sa/game_sa/CTaskSimpleDuckToggle.h | 1 - plugin_sa/game_sa/CTaskSimpleFacial.cpp | 8 ++++---- plugin_sa/game_sa/CTaskSimpleFacial.h | 9 ++++----- plugin_sa/game_sa/CTaskSimpleFight.h | 1 - plugin_sa/game_sa/CTaskSimpleGangDriveBy.cpp | 8 ++++---- plugin_sa/game_sa/CTaskSimpleGangDriveBy.h | 9 ++++----- plugin_sa/game_sa/CTaskSimpleIKChain.cpp | 9 ++++----- plugin_sa/game_sa/CTaskSimpleIKChain.h | 9 ++++----- plugin_sa/game_sa/CTaskSimpleIKLookAt.cpp | 8 ++++---- plugin_sa/game_sa/CTaskSimpleIKLookAt.h | 9 ++++----- plugin_sa/game_sa/CTaskSimpleIKManager.cpp | 8 ++++---- plugin_sa/game_sa/CTaskSimpleIKManager.h | 9 ++++----- plugin_sa/game_sa/CTaskSimpleInAir.h | 1 - plugin_sa/game_sa/CTaskSimpleJetpack.h | 1 - plugin_sa/game_sa/CTaskSimpleJump.h | 1 - plugin_sa/game_sa/CTaskSimplePlayerOnFoot.cpp | 8 ++++---- plugin_sa/game_sa/CTaskSimplePlayerOnFoot.h | 9 ++++----- plugin_sa/game_sa/CTaskSimpleRunAnim.cpp | 8 ++++---- plugin_sa/game_sa/CTaskSimpleRunAnim.h | 9 ++++----- plugin_sa/game_sa/CTaskSimpleRunNamedAnim.cpp | 8 ++++---- plugin_sa/game_sa/CTaskSimpleRunNamedAnim.h | 1 - plugin_sa/game_sa/CTaskSimpleStandStill.h | 1 - plugin_sa/game_sa/CTaskSimpleStealthKill.cpp | 8 ++++---- plugin_sa/game_sa/CTaskSimpleStealthKill.h | 9 ++++----- plugin_sa/game_sa/CTaskSimpleSwim.h | 1 - plugin_sa/game_sa/CTaskSimpleThrowProjectile.h | 1 - plugin_sa/game_sa/CTaskSimpleTriggerLookAt.cpp | 8 ++++---- plugin_sa/game_sa/CTaskSimpleTriggerLookAt.h | 9 ++++----- plugin_sa/game_sa/CTaskSimpleUseGun.h | 1 - plugin_sa/game_sa/CTaskTimer.h | 1 - plugin_sa/game_sa/CTaskUtilityLineUpPedWithCar.h | 1 - plugin_sa/game_sa/CTheCarGenerators.cpp | 8 ++++---- plugin_sa/game_sa/CTheCarGenerators.h | 9 ++++----- plugin_sa/game_sa/CTheScripts.cpp | 8 ++++---- plugin_sa/game_sa/CTimeCycle.h | 1 - plugin_sa/game_sa/CTimeCycleBox.h | 9 ++++----- plugin_sa/game_sa/CTimer.h | 1 - plugin_sa/game_sa/CTrailer.h | 1 - plugin_sa/game_sa/CTrainNode.h | 1 - plugin_sa/game_sa/CTxdStore.h | 1 - plugin_sa/game_sa/CUpsideDownCarCheck.h | 1 - plugin_sa/game_sa/CUserDisplay.h | 1 - plugin_sa/game_sa/CWanted.h | 1 - plugin_sa/game_sa/CWeapon.h | 1 - plugin_sa/game_sa/CWeaponEffects.h | 1 - plugin_sa/game_sa/CWeaponInfo.h | 1 - plugin_sa/game_sa/FxBox_c.h | 1 - plugin_sa/game_sa/FxEmitterBP_c.h | 1 - plugin_sa/game_sa/FxFrustumInfo_c.h | 1 - plugin_sa/game_sa/FxInfoManager_c.h | 1 - plugin_sa/game_sa/FxManager_c.h | 1 - plugin_sa/game_sa/FxMemoryPool_c.h | 1 - plugin_sa/game_sa/FxPlane_c.h | 1 - plugin_sa/game_sa/FxPrimBP_c.h | 1 - plugin_sa/game_sa/FxSphere_c.h | 1 - plugin_sa/game_sa/Fx_c.h | 1 - plugin_sa/game_sa/IplDef.h | 1 - plugin_sa/game_sa/JPegCompress.h | 1 - plugin_sa/game_sa/ListItem_c.h | 1 - plugin_sa/game_sa/List_c.h | 1 - plugin_sa/game_sa/RpHAnimBlendInterpFrame.h | 1 - plugin_sa/game_sa/SArray.h | 1 - plugin_sa/game_sa/TxdDef.h | 1 - plugin_sa/game_sa/cHandlingDataMgr.h | 1 - plugin_sa/game_sa/cTransmission.h | 1 - plugin_sa/game_sa/tBikeHandlingData.h | 1 - plugin_sa/game_sa/tBinaryIplFile.h | 1 - plugin_sa/game_sa/tBoatHandlingData.h | 1 - plugin_sa/game_sa/tFlyingHandlingData.h | 1 - plugin_sa/game_sa/tHandlingData.h | 9 ++++----- plugin_sa/game_sa/tTransmissionGear.h | 1 - plugin_sa/plugin_sa.h | 1 - plugin_sa_unreal/plugin_sa_unreal.h | 1 - plugin_vc/game_vc/AnimAssociationData.h | 1 - plugin_vc/game_vc/AnimBlendFrameData.h | 1 - plugin_vc/game_vc/C3dMarker.h | 1 - plugin_vc/game_vc/C3dMarkers.h | 1 - plugin_vc/game_vc/CAnimBlendAssociation.h | 1 - plugin_vc/game_vc/CAnimBlendClumpData.h | 1 - plugin_vc/game_vc/CAnimBlock.h | 1 - plugin_vc/game_vc/CAnimManager.h | 1 - plugin_vc/game_vc/CAnimationStyleDescriptor.h | 1 - plugin_vc/game_vc/CAutoPilot.h | 1 - plugin_vc/game_vc/CAutomobile.cpp | 8 ++++---- plugin_vc/game_vc/CAutomobile.h | 9 ++++----- plugin_vc/game_vc/CBike.cpp | 8 ++++---- plugin_vc/game_vc/CBike.h | 8 ++++---- plugin_vc/game_vc/CBoat.cpp | 8 ++++---- plugin_vc/game_vc/CBoat.h | 8 ++++---- plugin_vc/game_vc/CBox.cpp | 8 ++++---- plugin_vc/game_vc/CBox.h | 9 ++++----- plugin_vc/game_vc/CBrightLights.h | 1 - plugin_vc/game_vc/CBuilding.h | 1 - plugin_vc/game_vc/CBulletInfo.h | 1 - plugin_vc/game_vc/CBulletTrace.h | 1 - plugin_vc/game_vc/CBulletTraces.h | 1 - plugin_vc/game_vc/CCam.h | 1 - plugin_vc/game_vc/CCamera.h | 1 - plugin_vc/game_vc/CCarAI.h | 1 - plugin_vc/game_vc/CCarCtrl.cpp | 8 ++++---- plugin_vc/game_vc/CCarCtrl.h | 8 ++++---- plugin_vc/game_vc/CCarGenerator.cpp | 8 ++++---- plugin_vc/game_vc/CCarGenerator.h | 8 ++++---- plugin_vc/game_vc/CCivilianPed.cpp | 8 ++++---- plugin_vc/game_vc/CCivilianPed.h | 9 ++++----- plugin_vc/game_vc/CClock.h | 1 - plugin_vc/game_vc/CClouds.cpp | 8 ++++---- plugin_vc/game_vc/CClouds.h | 8 ++++---- plugin_vc/game_vc/CClumpModelInfo.cpp | 8 ++++---- plugin_vc/game_vc/CClumpModelInfo.h | 9 ++++----- plugin_vc/game_vc/CColBox.cpp | 8 ++++---- plugin_vc/game_vc/CColBox.h | 9 ++++----- plugin_vc/game_vc/CColLine.cpp | 8 ++++---- plugin_vc/game_vc/CColLine.h | 9 ++++----- plugin_vc/game_vc/CColModel.cpp | 8 ++++---- plugin_vc/game_vc/CColModel.h | 8 ++++---- plugin_vc/game_vc/CColPoint.h | 1 - plugin_vc/game_vc/CColSphere.cpp | 8 ++++---- plugin_vc/game_vc/CColSphere.h | 9 ++++----- plugin_vc/game_vc/CControllerState.h | 1 - plugin_vc/game_vc/CCopPed.cpp | 8 ++++---- plugin_vc/game_vc/CCopPed.h | 9 ++++----- plugin_vc/game_vc/CCoronas.h | 1 - plugin_vc/game_vc/CCrane.h | 1 - plugin_vc/game_vc/CCranes.h | 1 - plugin_vc/game_vc/CCurrentVehicle.h | 1 - plugin_vc/game_vc/CCutsceneObject.h | 1 - plugin_vc/game_vc/CCutsceneShadow.h | 1 - plugin_vc/game_vc/CDamageManager.cpp | 8 ++++---- plugin_vc/game_vc/CDamageManager.h | 8 ++++---- plugin_vc/game_vc/CDarkel.cpp | 8 ++++---- plugin_vc/game_vc/CDarkel.h | 8 ++++---- plugin_vc/game_vc/CDirectory.h | 1 - plugin_vc/game_vc/CDoor.cpp | 8 ++++---- plugin_vc/game_vc/CDoor.h | 9 ++++----- plugin_vc/game_vc/CDraw.cpp | 1 - plugin_vc/game_vc/CDraw.h | 1 - plugin_vc/game_vc/CDummy.h | 1 - plugin_vc/game_vc/CDummyObject.h | 1 - plugin_vc/game_vc/CEmergencyPed.cpp | 8 ++++---- plugin_vc/game_vc/CEmergencyPed.h | 9 ++++----- plugin_vc/game_vc/CEntity.cpp | 8 ++++---- plugin_vc/game_vc/CEntryInfoList.h | 1 - plugin_vc/game_vc/CEntryInfoNode.h | 1 - plugin_vc/game_vc/CEscalators.cpp | 8 ++++---- plugin_vc/game_vc/CEscalators.h | 8 ++++---- plugin_vc/game_vc/CFileLoader.h | 1 - plugin_vc/game_vc/CFire.h | 1 - plugin_vc/game_vc/CFireManager.h | 1 - plugin_vc/game_vc/CFont.h | 1 - plugin_vc/game_vc/CFontDetails.h | 1 - plugin_vc/game_vc/CGame.h | 1 - plugin_vc/game_vc/CGameLogic.h | 1 - plugin_vc/game_vc/CGangs.cpp | 8 ++++---- plugin_vc/game_vc/CGangs.h | 9 ++++----- plugin_vc/game_vc/CGeneral.h | 1 - plugin_vc/game_vc/CHeli.cpp | 8 ++++---- plugin_vc/game_vc/CHeli.h | 9 ++++----- plugin_vc/game_vc/CHud.h | 1 - plugin_vc/game_vc/CIniFile.cpp | 8 ++++---- plugin_vc/game_vc/CIniFile.h | 9 ++++----- plugin_vc/game_vc/CKeyboardState.h | 1 - plugin_vc/game_vc/CLink.h | 1 - plugin_vc/game_vc/CLinkList.h | 1 - plugin_vc/game_vc/CMatrix.h | 8 ++++---- plugin_vc/game_vc/CMessages.h | 1 - plugin_vc/game_vc/CModelInfo.cpp | 8 ++++---- plugin_vc/game_vc/CMotionBlurStreaks.h | 1 - plugin_vc/game_vc/CMouseControllerState.h | 1 - plugin_vc/game_vc/CMousePointerStateHelper.h | 1 - plugin_vc/game_vc/CMovie.h | 1 - plugin_vc/game_vc/CObject.h | 1 - plugin_vc/game_vc/COcclusion.h | 1 - plugin_vc/game_vc/COneSheet.h | 1 - plugin_vc/game_vc/COnscreenTimer.cpp | 8 ++++---- plugin_vc/game_vc/COnscreenTimer.h | 8 ++++---- plugin_vc/game_vc/CPad.h | 1 - plugin_vc/game_vc/CPager.h | 1 - plugin_vc/game_vc/CParticle.h | 1 - plugin_vc/game_vc/CPathFind.h | 1 - plugin_vc/game_vc/CPathNode.h | 1 - plugin_vc/game_vc/CPedIK.h | 1 - plugin_vc/game_vc/CPedModelInfo.cpp | 8 ++++---- plugin_vc/game_vc/CPedModelInfo.h | 8 ++++---- plugin_vc/game_vc/CPedPlacement.cpp | 8 ++++---- plugin_vc/game_vc/CPedPlacement.h | 8 ++++---- plugin_vc/game_vc/CPedStats.h | 1 - plugin_vc/game_vc/CPedType.h | 1 - plugin_vc/game_vc/CPhone.h | 1 - plugin_vc/game_vc/CPhoneInfo.h | 1 - plugin_vc/game_vc/CPhysical.h | 1 - plugin_vc/game_vc/CPickups.cpp | 8 ++++---- plugin_vc/game_vc/CPickups.h | 8 ++++---- plugin_vc/game_vc/CPlane.cpp | 8 ++++---- plugin_vc/game_vc/CPlane.h | 8 ++++---- plugin_vc/game_vc/CPlayerInfo.cpp | 8 ++++---- plugin_vc/game_vc/CPlayerInfo.h | 8 ++++---- plugin_vc/game_vc/CPlayerPed.cpp | 8 ++++---- plugin_vc/game_vc/CPlayerPed.h | 9 ++++----- plugin_vc/game_vc/CPointLight.h | 1 - plugin_vc/game_vc/CPointLights.h | 1 - plugin_vc/game_vc/CPools.h | 1 - plugin_vc/game_vc/CPopulation.cpp | 8 ++++---- plugin_vc/game_vc/CPopulation.h | 8 ++++---- plugin_vc/game_vc/CProjectile.cpp | 8 ++++---- plugin_vc/game_vc/CProjectile.h | 9 ++++----- plugin_vc/game_vc/CProjectileInfo.cpp | 8 ++++---- plugin_vc/game_vc/CProjectileInfo.h | 9 ++++----- plugin_vc/game_vc/CPtrList.h | 1 - plugin_vc/game_vc/CPtrNode.h | 1 - plugin_vc/game_vc/CQuaternion.h | 8 ++++---- plugin_vc/game_vc/CRect.h | 1 - plugin_vc/game_vc/CRegisteredMotionBlurStreak.h | 1 - plugin_vc/game_vc/CRestart.h | 1 - plugin_vc/game_vc/CRouteNode.h | 1 - plugin_vc/game_vc/CRubbish.h | 1 - plugin_vc/game_vc/CScene.h | 1 - plugin_vc/game_vc/CSceneEdit.h | 1 - plugin_vc/game_vc/CSector.h | 1 - plugin_vc/game_vc/CShadowCamera.h | 1 - plugin_vc/game_vc/CShinyTexts.h | 1 - plugin_vc/game_vc/CShotInfo.h | 1 - plugin_vc/game_vc/CSimpleModelInfo.h | 1 - plugin_vc/game_vc/CSphere.cpp | 8 ++++---- plugin_vc/game_vc/CSphere.h | 9 ++++----- plugin_vc/game_vc/CSprite.h | 1 - plugin_vc/game_vc/CSprite2d.h | 1 - plugin_vc/game_vc/CStats.cpp | 8 ++++---- plugin_vc/game_vc/CStats.h | 8 ++++---- plugin_vc/game_vc/CStinger.cpp | 8 ++++---- plugin_vc/game_vc/CStinger.h | 9 ++++----- plugin_vc/game_vc/CStoredCollPoly.h | 1 - plugin_vc/game_vc/CTheScripts.h | 1 - plugin_vc/game_vc/CTheZones.cpp | 8 ++++---- plugin_vc/game_vc/CTheZones.h | 8 ++++---- plugin_vc/game_vc/CTimeCycle.h | 1 - plugin_vc/game_vc/CTimeModelInfo.cpp | 8 ++++---- plugin_vc/game_vc/CTimeModelInfo.h | 8 ++++---- plugin_vc/game_vc/CTimer.h | 1 - plugin_vc/game_vc/CTrafficLights.h | 1 - plugin_vc/game_vc/CTrain.cpp | 8 ++++---- plugin_vc/game_vc/CTrain.h | 8 ++++---- plugin_vc/game_vc/CTreadable.h | 1 - plugin_vc/game_vc/CTxdStore.cpp | 8 ++++---- plugin_vc/game_vc/CTxdStore.h | 8 ++++---- plugin_vc/game_vc/CUserDisplay.cpp | 8 ++++---- plugin_vc/game_vc/CUserDisplay.h | 8 ++++---- plugin_vc/game_vc/CVehicle.cpp | 8 ++++---- plugin_vc/game_vc/CVehicle.h | 8 ++++---- plugin_vc/game_vc/CWanted.cpp | 8 ++++---- plugin_vc/game_vc/CWanted.h | 8 ++++---- plugin_vc/game_vc/CWaterCannons.h | 1 - plugin_vc/game_vc/CWeapon.cpp | 8 ++++---- plugin_vc/game_vc/CWeapon.h | 9 ++++----- plugin_vc/game_vc/CWeaponEffects.cpp | 8 ++++---- plugin_vc/game_vc/CWeaponEffects.h | 8 ++++---- plugin_vc/game_vc/CWeaponInfo.cpp | 8 ++++---- plugin_vc/game_vc/CWeaponInfo.h | 8 ++++---- plugin_vc/game_vc/CWeaponModelInfo.cpp | 8 ++++---- plugin_vc/game_vc/CWeaponModelInfo.h | 8 ++++---- plugin_vc/game_vc/CWeather.cpp | 8 ++++---- plugin_vc/game_vc/CWeather.h | 8 ++++---- plugin_vc/game_vc/CWheel.h | 9 ++++----- plugin_vc/game_vc/CWindModifiers.h | 1 - plugin_vc/game_vc/C_PcSave.h | 1 - plugin_vc/game_vc/DRAW_FADE_STATE.h | 1 - plugin_vc/game_vc/NodeName.h | 1 - plugin_vc/game_vc/RwObjectNameIdAssocation.h | 8 ++++---- plugin_vc/game_vc/cAudioScriptObject.h | 1 - plugin_vc/game_vc/cBuoyancy.h | 1 - plugin_vc/game_vc/cHandlingDataMgr.cpp | 8 ++++---- plugin_vc/game_vc/cHandlingDataMgr.h | 9 ++++----- plugin_vc/game_vc/cParticleSystemMgr.h | 1 - plugin_vc/game_vc/cTransmission.cpp | 8 ++++---- plugin_vc/game_vc/cTransmission.h | 9 ++++----- plugin_vc/game_vc/enums/eCopType.h | 8 ++++---- plugin_vc/game_vc/enums/eCoronaType.h | 8 ++++---- plugin_vc/game_vc/enums/eCrimeType.h | 8 ++++---- plugin_vc/game_vc/enums/eEntityStatus.h | 8 ++++---- plugin_vc/game_vc/enums/eEventType.h | 8 ++++---- plugin_vc/game_vc/enums/eExplosionType.h | 8 ++++---- plugin_vc/game_vc/enums/eFormation.h | 8 ++++---- plugin_vc/game_vc/enums/eGangType.h | 8 ++++---- plugin_vc/game_vc/enums/eLevelName.h | 8 ++++---- plugin_vc/game_vc/enums/eModelInfoType.h | 8 ++++---- plugin_vc/game_vc/enums/eParticleObjectType.h | 8 ++++---- plugin_vc/game_vc/enums/ePedAction.h | 8 ++++---- plugin_vc/game_vc/enums/ePedModel.h | 8 ++++---- plugin_vc/game_vc/enums/ePedPieceTypes.h | 8 ++++---- plugin_vc/game_vc/enums/ePedStats.h | 8 ++++---- plugin_vc/game_vc/enums/ePickupType.h | 8 ++++---- plugin_vc/game_vc/enums/eRadioStations.h | 8 ++++---- plugin_vc/game_vc/enums/eSceneCommands.h | 8 ++++---- plugin_vc/game_vc/enums/eShadowType.h | 8 ++++---- plugin_vc/game_vc/enums/eVehicleFlags.h | 8 ++++---- plugin_vc/game_vc/enums/eVehicleType.h | 8 ++++---- plugin_vc/game_vc/enums/eWaitState.h | 8 ++++---- plugin_vc/game_vc/enums/eWeaponFire.h | 8 ++++---- plugin_vc/game_vc/enums/eWeaponModel.h | 8 ++++---- plugin_vc/game_vc/enums/eWeaponType.h | 8 ++++---- plugin_vc/game_vc/enums/eWeather.h | 8 ++++---- plugin_vc/game_vc/tBikeHandlingData.h | 9 ++++----- plugin_vc/game_vc/tBoatHandlingData.h | 9 ++++----- plugin_vc/game_vc/tCamPathSplines.h | 1 - plugin_vc/game_vc/tFlyingHandlingData.h | 9 ++++----- plugin_vc/game_vc/tHandlingData.h | 9 ++++----- plugin_vc/game_vc/tParticleSystemData.h | 1 - plugin_vc/game_vc/tParticleType.h | 1 - plugin_vc/game_vc/tQueuedMode.h | 1 - plugin_vc/game_vc/tTransmissionGear.h | 9 ++++----- plugin_vc/plugin_vc.h | 1 - plugin_vc_unreal/game_vc_unreal/common.h | 1 - plugin_vc_unreal/plugin_vc_unreal.h | 1 - shared/Color.h | 1 - shared/Extender.h | 1 - shared/GameVersionMessage.h | 1 - shared/Patch.h | 1 - shared/StringUtils.h | 1 - shared/common_sdk.h | 1 - shared/comp/plugins/LimitAdjusterSupport.cpp | 1 - shared/comp/plugins/LimitAdjusterSupport.h | 1 - 872 files changed, 986 insertions(+), 1694 deletions(-) diff --git a/examples/Neon/KeyCheck.cpp b/examples/Neon/KeyCheck.cpp index 1f0adb85..f02f2dc2 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 f83207c0..4ab37666 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 e72f5578..097dafb1 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 c6ac4303..8b14bb66 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 b0ab5d74..a4b7c901 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 ef473ad1..7595472a 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 92ab757c..98b6e85f 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 ee015b3d..d6a60a6d 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 21712f5f..fa9497c8 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 8282a978..2e4b755b 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 bf79ccb1..28576231 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 1f36bb46..6ee89857 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 a3f3b4fc..119521d7 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 a7965534..e17103a9 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 5860234b..4fec7558 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 8659b7bf..82b4ce16 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 25d1a916..ec75d1f4 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 f685313b..23b4ded8 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 0a149a67..343c6199 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 f938ebe9..b69c55a1 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 692b56cf..780e2cd3 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 1e01ab37..a568818a 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 6f455db9..6b0158cd 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 de86fabe..a53a47e6 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 63eec4d2..6202d7ce 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 f7e2ba03..62607e66 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 3ddff5fd..0f9494f5 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 5159b691..af3a662f 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 0e4d8d45..9afd17bf 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 b45435f7..fb35f907 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 64adf50a..801f6c21 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 b5685ee0..35a5d99e 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 2091d937..32bb9c30 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 3f67b50e..11d10ba3 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 fbd36d87..2c4dcfc0 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 68c49a0c..57fc137e 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 1f2da947..8917593a 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 3e3d10dc..798e6341 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 b00b09de..f01ca1c2 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 d1a5ae28..2b69d86e 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 f578fe78..5318ae75 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 f0d46bee..cc9d77a4 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 bc216f84..44f4b91d 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 98e44c0d..851132c7 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 db07e9be..27532cb4 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 4512bc6b..8c84a289 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 065c1714..3d57629f 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 263cfaaf..4f13fe7d 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 f1fb44c3..f49eed8f 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 517318c2..f648d90a 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 09717b7c..aaa2fc04 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 4f26268d..b2a5da26 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 cbd96650..8aa5ff74 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 51505a56..c01cbb31 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 5f75e2a5..eccac65d 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 9195423b..55b9ff8e 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 93013118..1a836538 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 fd7c3851..7566291a 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 5ba10848..1d5554b4 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 b1959519..e20105cd 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 ff6f9ef2..51ed086b 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 7e487aa7..9344ae4c 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 aa89caff..7404f720 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 1ee0b8e7..0c915735 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 84bb1f3d..3f9b45ad 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 1bb6d29a..9d48e619 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 48fd3a90..e34ec81f 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 af100b3a..64dc0a4d 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 45b3dc96..7825bec8 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 2cc93f18..c1edab72 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 e1250e1b..d8d85a23 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 5a7644c9..3b815f09 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 a7d97bb0..4c8e8287 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 34eab18b..17a4110e 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 f3c63a93..666bd874 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 6839c88f..d0ce70f9 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 5553d828..6daf4c75 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 94dbda8b..2ba19f66 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 a2dbcae0..ced30421 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 36ef6da0..ee1e4b22 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 4e22814c..d95ef796 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 20f78a1a..7217b9cd 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 8661c088..6d7bc76c 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 28ce9326..025e58ff 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 62d2865e..917de325 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 6840809b..fbb2d963 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 cbcaf80b..35f70109 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 5a07223d..67f7534b 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 a7574cc4..12757d1c 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 6428e76b..b0255838 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 2e84b78b..1eebcac8 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 d1e92bb6..f0501e1b 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 563a76bc..04ae61f7 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 143f33c6..d9f930ab 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 8961488d..cec12ca0 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 8f356b1f..e4e68c91 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 ce60b91e..1aab983f 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 48a05b78..b58793c8 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 65a5790e..e56b8786 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 b16c897c..5e9348bd 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 302eda84..9a9e84d0 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 b2beda87..09bd5316 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 66865ca6..1c112c7e 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 7f35bf25..b6d46869 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 973f70c5..ee6d31c8 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 29de014d..527b43d1 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 4c8d1055..092c4a66 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 374bda08..e1b31fc9 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 620c21df..10ea16f8 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 b399f9fe..08ea884f 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 88f87e1e..a5c64c6f 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 063656a2..bfb17749 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 c61a3c2c..5cf74e5f 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 eb316d63..a9ffac48 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 ac3ccb16..34a2d431 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 bab034a6..be7fec8c 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 82f82f48..a010d674 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 4084f3f1..ad05a84c 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 848ca14c..22fd4429 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 ce00ef99..6fcd4fb9 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 5a643ed8..ab741256 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 81da9ccd..70dbfd04 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 986d5460..0498efe7 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 77e0f25d..465c9701 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 b9ae5b43..137d2c93 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 6a662da4..ec30d87f 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 ccc8a7e8..603e0005 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 658a4c97..37bd166f 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 a397e399..4bd5dcbd 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 46db4bad..c16540a2 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 83e5be1c..aef328f9 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 f72073a8..7bbfaf06 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 55746243..c225503a 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 d66e8f7d..fe6907b5 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 77562836..ae572a63 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 916a9067..327b9f8f 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 53714386..79ccd996 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 d72c48b3..1ef98048 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 b93cf4d7..fc10e2c2 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 8ba31ed0..bdc9d64e 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 bbaebd2c..333409d4 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 c208a027..65c48d6a 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 1c5eaa2b..9ef987d6 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 012e7aa9..8bc4dcef 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 4602fb59..cdd0bc12 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 0734e4ce..6d36cd26 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 47a1edfc..184e385e 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 2bfc2edd..c7968b2b 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 e1c998c8..4bf80bc2 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 5656b783..bbff88cf 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 bfcecd0c..11a60905 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 b75a0dd8..95db7363 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 b11de8fc..1d667a0c 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 966eaf1c..85666fa5 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 280d5f9e..c01ab509 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 3ad6db8d..904cb5a2 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 64056c95..6b6ce224 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 a8178bc6..49e299b1 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 5242e47f..c3e7e6d0 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 65177e21..07f604e5 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 6ad7320c..d8e1aafc 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 fda35752..31dc941e 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 ec4e6130..90f5eede 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 b312afd9..5d4406b7 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 790eead0..b7e8cc95 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 4eddc48e..7ed0ec3c 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 d1e3f858..dc264b16 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 4bed8fca..2ec8d66f 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 0eb05fb6..b8eacff8 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 af8b6b49..dcc30de5 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 b892baaf..1488cc7c 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 e4111c2f..de9d9e17 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 c7904d04..f7f9a5fe 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 099fdcf0..b2a47276 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 8a974f53..9c979c09 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 ff4058c7..909bfe2d 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 4c3b2756..8682ce80 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 663739bd..4c8334c0 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 5d003559..e27f2979 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 05ab79e2..fb3d363c 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 d4a7bb3f..58dbd50d 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 7d1f75f9..a17f308a 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 4c913d6c..2d2c1801 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 c47a3f23..7bf473e3 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 6b904a94..3712acdc 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 ce94d83d..c9878593 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 2fc1e332..410b1060 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 a00538f7..1ae2d039 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 01374334..39e83a99 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 3831678b..7a7170b6 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 70b07f0d..c7760a6d 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 25b5044f..c6ed04fa 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 3275b9f3..5999afd6 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 7ca15aa4..b634d2d5 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 7ac5a968..6e86b7e5 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 a422fe29..f57ce6ed 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 127aece5..47991c26 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 119de999..0170f557 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 065b15b9..e1e63a50 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 d23ef9b0..d23adc4a 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 53227558..19273ae5 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 a54a6939..636267bf 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 9d1bed76..12e09629 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 139af7be..ff2174bd 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 38f983c9..79a21a71 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 b60c922b..347a4aab 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 b5fb4af7..de8aef21 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 a6714090..831cce66 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 47ec566f..af52b9a4 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 72d00e40..30596d3a 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 cb08836d..4c62f962 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 47bccf4e..e8d39b80 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 bee299af..0941d109 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 b0bfb290..391a136d 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 bbd1ec2f..9db0ccb0 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 2f256a72..783f8c53 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 81812ab1..486f40e2 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 69f83ffa..0ba86626 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 80963496..675af2fe 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 5686ee4c..de61b03d 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 472ded8d..762982e0 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 0a0380f7..22f92c0c 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 1578d72b..d6abc5de 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 0c2894de..ec06329e 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 5e9eca21..a76ae37b 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 21ca0858..5311f34e 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 d8010447..9c50a839 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 1c97d483..c3dd2b14 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 e9f69c95..d464b49c 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 fbce528a..6f964a57 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 f048b106..4105a3ee 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 a23fbd9e..4a890294 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 67ff80bf..26319d9d 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 e415fb3a..38a06d7c 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 86f5d393..b244d24d 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 36614396..ac48ca89 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 69eb3209..67c31b8d 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 b0fbd7c2..72471619 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 410ba94a..00580797 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 b06e2f29..5da3e62e 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 44eb42d3..1315ed15 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 7a2e45a9..a465f682 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 443e8e6d..d86ea8f7 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 307ee7a5..82c35024 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 8e26e30f..228598a7 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 bfaa4664..99fcb208 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 37ba2742..9d555142 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 43d85c70..99c679a8 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 a2b9f4a9..08abb8fd 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 e3c7938c..efed6513 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 2f2d4417..0c32b88d 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 0f8f3e58..c26263bf 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 aad30a68..4743b997 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 4c191e9c..72768fb4 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 52fa323c..c4202ecf 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 90eeb6a4..432a51a1 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 776df077..72651f84 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 3ad1f5b6..45e91922 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 808d7fb8..e19e5b71 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 34a40270..3bb86a4e 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 7142bedb..2f3a5e65 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 38b44e2d..c48c2c8e 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 f9fcafce..503835bb 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 f2f35658..0138d8b7 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 1c4b3280..b0244315 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 02dda542..ca30e4de 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 9670103f..1285d315 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 d09cd4f2..d99efb0d 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 9a969d43..79ae30f5 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 68b02e5f..af6d170d 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 d7988142..461a54b5 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 2fe31027..dc6d9c29 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 76524dc2..94360ce1 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 6ae4dece..91d6edb6 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 75f057ef..55049325 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 89317d3e..568eb625 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 09766737..418b9455 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 3ea28ba7..ff5ee815 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 f4228924..ef7a76ca 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 710720bc..24e6f2d4 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 c7e681de..ba52b4f5 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 12da72a9..6920c46f 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 e0831472..d2c99b1d 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 04b32be1..860f8f14 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 4ce0ee8a..6efec668 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 fd9a405f..4f8a94aa 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 bf90550d..c6b33ecd 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 8b444978..225b6762 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 24dbade1..0b47cef5 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 97b5f877..0be9ce04 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 55ff2617..4b17884c 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 531a3894..afe4af44 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 791ca8e5..2f0bef53 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 0ae8eb1e..da98345b 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 f8ffeb9b..7c31efda 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 2e813dd4..820a01d2 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 85e4cccd..4b5b91c3 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 e216aac8..21b10ba1 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 7b654cae..0d80facb 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 4e802294..dc7eaa8a 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 4ea857f7..5ae00735 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 5bec109d..b24bc787 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 6e12952b..f8ee9234 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 7eb7a8f6..a3381482 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 46aa848d..72672724 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 20b3bffd..fa02dc47 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 b1d40eb3..03668cf9 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 20e45062..8448c492 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 503a175f..8ac0032b 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 eb00d35d..3cf3cbf2 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 9a21b283..11cdd378 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 b66b0901..b83d10f0 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 99054b52..52ff40b8 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 543ebf18..50e16089 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 567e031a..833b1fe5 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 3d7eef4a..00b6ad6b 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 6a35ef06..2b49e06e 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 877d5a33..5ba6faf1 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 8df46ac2..ea24fe14 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 3338c491..7ff3573c 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 4e39f6dc..df7881af 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 efc862cd..99fd51d2 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 d5d8892d..8941f7c9 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 844d351a..f9916947 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 eb3c10b7..c6002c05 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 8acc4640..5573dcd8 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 efb21190..6a2ff65c 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 5c1ea0e6..d50362cc 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 9cac0428..332d248f 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 f6c9e2f4..2f5721da 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 44f9e1a2..0039f99f 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 4423792b..28940916 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 2ce14bc5..b7fcf629 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 d58f334e..f9858565 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 733da50d..2aa71dc8 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 21236190..3cab8c46 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 c8294353..c16e6ba7 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 43841ca3..7e07d07e 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 33d56edd..b4e84eb2 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 e04b7e06..ce5a5fae 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 ab9fed9f..c155dfdd 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 ca38dfad..38af640e 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 d6bb8616..87e09ce2 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 501dbf99..b1f884e5 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 dc0e9516..eb88c452 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 c24a0070..c9b3849e 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 eddae10a..ac3c8fac 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 c2211bc3..2b02d021 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 ad0b9f19..96a7e79a 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 fe96922b..3ff4c06d 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 b7adefa1..a8dc5f1a 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 07adcc7a..df859e8f 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 0708f0b4..22ca2366 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 b6579d9a..fdd1aec8 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 733d1c31..a5ea7b20 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 42bab8fd..7924a1f6 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 d261202c..3a51e520 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 42855e1c..f76f0647 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 657c099c..a2c4af47 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 068f680a..8187cf33 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 66c8b6aa..48ef9af7 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 e529f9df..7ebbfc1f 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 ca7c1520..179b08b0 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 19ed70ea..b1453fb4 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 a9ad130a..ebc93296 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 82d85d04..de4c0d89 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 7784c9cd..335d7138 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 0ff0c82b..e3624fa0 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 c1aa12ee..86ed6099 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 48cc6b1a..fd33d226 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 c113cd95..72ace28f 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 f4eaad1d..af57e11a 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 85491c5d..06a33e5c 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 568f2623..e942ceef 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 c2a5dd65..744a70aa 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 a7d3911e..abddd46e 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 e56f3f63..58229bcd 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 72af2548..0e78606b 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 4811d1bb..26e23ca2 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 c9971030..e0844367 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 9e88f563..7d634e1a 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 0c1c7416..a1f8de23 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 3b01adf2..df15bce3 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 2cc10ee8..2975063c 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 a91abe41..c5d8e513 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 fa67c30a..b57a5205 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 3b41306d..f780ed0d 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 b44749e8..89f521e5 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 356f01bf..bc993993 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 7946a9cf..db49edd9 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 56d32df0..66d04485 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 2e800ced..6fc4cd2d 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 9d98c585..d629e69c 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 21066fc6..369bc5a8 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 54bb7564..5638b62b 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 5ec8058c..e7ef427a 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 eed732bc..e27c941b 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 9f947417..11b2a6e7 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 454eb8f6..8c31ca5f 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 d3ec3750..d22957f5 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 7663af45..70f0e727 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 2aceab56..17301e28 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 97334273..960fda2e 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 c6e812d9..6df5e7d3 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 b3d27d12..dc024c16 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 d3ae2fe1..e2021c18 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 147773a3..bfbceffe 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 3ca1f580..402ff6f0 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 e9fa79e5..7072ee58 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 18b537da..80365baa 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 94a722fb..8859c697 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 3d762763..51852390 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 dd17ef13..26b39b6f 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 beedef97..1fa4b8fd 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 a3897966..92367bdf 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 34fc84a7..3b66f61b 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 a916ec30..0f3b5192 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 a2e6bfe7..3bed09e9 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 fb5e47f9..a3bf6040 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 4bbfff3a..923dd282 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 c11ef7ac..b530adc8 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 17d0a5f1..cbb40be4 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 51996a31..60c80949 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 3e21d515..47904296 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 49878efe..3454e7c0 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 c4e3a72c..e67476e4 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 dd084ef6..5742f45b 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 cc33c8ca..99a2ec72 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 7a0a5925..b519b5d5 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 c850ea50..e19ea8b7 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 37aeb460..8f51bef6 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 1f6cc25a..f4018c9a 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 49376846..79d3f418 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 35390ceb..51e72bfa 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 bfa3979d..7e873b3b 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 6ae39149..921297fe 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 73b8e2a0..9d0b8e42 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 35a4b36f..485f9991 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 8f3c2d97..89f15bc1 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 2e40fd46..a4d84d40 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 993101c9..1a1a3a80 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 14a46633..af536807 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 7e5f18c8..fcd5979e 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 a8df8d07..6c23fee7 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 aad39892..f60b25a9 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 10dc2632..77dabbff 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 14b1d933..0f8e299b 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 71acdd01..98e6d81a 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 e24cb058..77456667 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 83d95fa1..20d4b09e 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 a2ba7726..ff503661 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 43cc91c1..ba5b13a3 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 7b67b2d4..aed00d04 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 362731aa..4351880e 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 ce918bf1..ebafc893 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 d39c708a..e0918445 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 f054ba17..8b74e4c0 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 041f919b..dee16b33 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 edcf3d73..049a90e3 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 a9c6785d..eedabd5b 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 0b209610..13eeb9b5 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 bb3c5036..3997b489 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 d9271bb8..05cb2f00 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 bafc56bb..51446fe1 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 043ba598..3eb85234 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 9e38e316..14cf40ca 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 098caa8c..a878a7e0 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 16d69248..37d1b9c6 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 bb94e765..e68030cc 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 9563c78c..e34c8673 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 f8b4cb67..01acc853 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 5fe739ab..d1230e20 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 a6f56d4f..f1ed4b57 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 1878aba2..15fb37cd 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 c7f3ad8e..0cf6d254 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 ef5076b2..516443f6 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 05da93a2..d896ef37 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 9a814558..eb15fe19 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 071b1cc5..c9702b6c 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 7636085f..f2a526a7 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 7eea6757..53cdf358 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 4ac0c869..a88c08f6 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 84a2a761..f84ba3b3 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 2ac6bb89..93c22065 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 57bd58ff..c5305c7e 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 fc44a64d..024fe341 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 0e128244..80b54749 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 816f0cc5..208ca93d 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 0a2054dc..d486d389 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 7a73450c..86e94009 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 f15d29dc..ff925723 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 238d3f29..8a282683 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 bc134f20..2abcfa6a 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 93f5bbb7..8026d69c 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 a64f15db..a3245c1f 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 d0b8e1e6..c5a85681 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 d400babb..fefd6fec 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 c81ed29a..7849a851 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 237ef2b3..07f721ce 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 4a6c33de..bc826d0e 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 c09025e7..6621d686 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 edfac2f9..09cb20e6 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 cd5ac537..a3c742e9 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 2e4bdb2b..52282e2e 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 b9c6756a..f1e5b1ff 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 d93550d2..ead7b162 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 b228e482..1761125e 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 c367ed9e..bb742db3 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 72cbe95c..60b53fa5 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 de4c2abd..e6812f78 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 1b72bb9b..6ab80d7d 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 45fde353..0f9fd63b 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 33f52c60..30228751 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 b2cf8e2e..83fdf6ae 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 f9fdc3a6..37f1f23b 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 6c622073..c1b4a654 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 6cff3a1d..0525283b 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 ddab962f..56cd6c31 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 e514c850..87eaa0cd 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 a038dae9..afe799ea 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 bb97e93b..8822c084 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 2057a1a1..9114e1de 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 28a3883f..983a4736 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 273597d6..113d0b38 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 0f07ec79..08a875c9 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 2da6d30d..503fb303 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 40f4606c..e9ea75e1 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 8dec57f8..483e4825 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 2c928d28..c842d168 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 bf463d7c..6413e585 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 b2d35b91..dc3e6e40 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 d6402fd0..2bcc5141 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 43f55afd..d0602050 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 b04448af..44f26e0d 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 3c1590d4..98f8c506 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 28afbb46..289774d9 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 a01916c7..77999850 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 ad4d6ae1..78714b76 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 c6fbb243..84a2251d 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 6c2dfdcc..3a3d513e 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 383f2fbd..695d4a18 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 e46565b1..9c881fc0 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 a3c455cf..416dc653 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 0722b94f..c738cabd 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 e48bb6a7..af32b11f 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 a8f0f3ab..6afc7382 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 274d0224..145f3c08 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 07368846..31efb820 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 c5d499c0..43365319 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 c743b59c..768799ec 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 1e65318e..e64489c2 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 cc2a67bd..5e627744 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 906b7416..6a5d040e 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 883878f2..8aef4d44 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 12b9c990..97034ead 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 8176f4b5..0f78b091 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 cc79fc61..864f7614 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 abf29125..f561a5a0 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 bb8cdb9b..9858912f 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 86def4b5..dfe73418 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 26bcb1c8..5b47310f 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 38e3d9d5..4d8ce12d 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 114c4b80..de2bcef4 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 9d271897..0ade9c03 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 b3c7ad6d..d3ba30d2 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 92d99e35..4b4354cf 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 0ce0c356..28e170fc 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 d1785aac..7632b6e5 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 2808ca95..d90e8aed 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 c10ba2ea..b96295f4 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 3fcc2651..e80000b9 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 ac851975..6d289454 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 57f7149a..25cd0359 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 3bc19dd3..da916e87 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 66ef4c88..cbb95357 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 e94e9137..363503c4 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 c0c76191..70c06f40 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 4129e514..a2597c0f 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 fa5c6a66..3bda88d0 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 0c5f144d..cd07e148 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 9f143ca4..f8ec87ba 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 d4e23aba..263ab4b8 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 17dff88b..a3b94419 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 2b90560e..1b526859 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 e0719508..fe909548 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 d9a31b03..e8971ef6 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 4513f0c7..b31dec31 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 2021365c..a8be14b0 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 65eb2983..13f338c0 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 9f9e1b92..f96e6142 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 fbc2cac1..d8e97517 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 0fab15e3..ab24db1e 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 3ecbbb5d..7c262546 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 fa1d421a..cf26cf05 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 34230577..5ad7043a 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 54f06130..b79fd999 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 05465219..85375df5 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 4e567a83..4075315e 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 a35551ff..43d81331 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 b8215944..1919f6d9 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 8f13a1b2..15df9059 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 05731d20..3da5dfec 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 94f0e9d4..0072f405 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 c48f0b2d..ef3ae118 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 c0ba9387..7d2a7a14 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 5e0eebea..c9c327fa 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 6280e998..4fcd70ce 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 fe19c9c8..a1fd41a9 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 cc269c2e..d64acdcb 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 56ef3436..75137c09 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 13f9746a..7263b4a3 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 432aaa50..50e8951b 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 c52b1d2d..0ae14f79 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 25f2261c..6c36e81f 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 9dc62987..594e2b8a 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 c3d63146..be5d6205 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 6337a20a..94b6d525 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 5894e7bd..4c340eef 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 6f407139..7ea47ca8 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 5e367687..5bfef4b0 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 f5366321..5cfb96b6 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 fca20f09..11bc68d0 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 1ecf8a62..3890045c 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 ecbc1f39..05c3dc09 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 2075cc44..636d1c45 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 7be30541..dc4e556d 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 e4b754a0..7c0112ec 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 9739d7a9..755596fa 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 06238b89..01022179 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 fbed041e..a6f48fb7 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 fc0c4d8e..ede867bb 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 657af7ea..8277a81b 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 b50676c5..4d08f017 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 5df2715d..46ddd774 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 785c2330..a719a064 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 1a427f1f..7fd8dd55 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 390120e2..e5de6369 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 7219e31e..d367fc80 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 29c7c9e9..a4bdb802 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 ec40687b..ee649011 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 9b8f4370..6f2173e5 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 4b38b09d..21afe810 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 0de05ac8..6e789e14 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 3d26d62c..8ead463e 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 ed72fbc3..8f4ff2cf 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 c3737402..e4aad2c6 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 d7b451bf..27f9da40 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 5f7a7baf..259a23bb 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 f40b223c..12d8e152 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 1eed381e..eb0be5ed 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 3be9a8f9..f64fdcb3 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 25e2d4df..dcff1337 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 0a4194ad..905fc38b 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 99f2b2a8..467c5478 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 208b6dce..aa55f65f 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 c608e170..d44ffb03 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 6b7560fb..e8a302c7 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 1f57e750..9e51072d 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 ca8eea25..d2be54de 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 b179a22c..214f3051 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 430ba35d..7394f2a8 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 c6a2d85b..7ae100a8 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 4d62d9c2..67cc54a8 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 97d7b67e..67e6c919 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 1cde3774..2f02ab8b 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 7e0e8e28..fe6b17bd 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 17b38021..bc8d65b3 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 85efb046..65d219fe 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 53652200..a2e3fc9c 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 56ec54e6..59bad58d 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 f1897c4f..fb28153c 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 9e48476d..1dbacb8d 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 77b43ffb..da424928 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 3f3150e5..92e10cfb 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 9d16bbb9..f7f78f53 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 52faff38..6efe62fa 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 bc472974..bf31efb4 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 a4e4e8b4..163bc78a 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 a873918a..48c644a9 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 b3376502..6b9e8c9a 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 0b8c882f..c0150bbd 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 f92d0b62..758ae554 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 f3e1652b..cdb990fa 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 9e79aa7a..85041aac 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 60b9a9ed..92d3bac2 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 b55c01c4..b7211d0f 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 cf988974..0d94be92 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 75b01c6b..4cf44826 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 a782f96d..46fad53e 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 d91dc94a..0c44115c 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 bca4fce8..2f3e285b 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 8da2951e..7e7d491d 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 b78c5151..87a5e593 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 d5a4f5c0..3229d8b4 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 c937d0ba..d7b8b9b9 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 ce6a6fc6..ea6027eb 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 560e8e0b..9647b515 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 703ef17a..0246156d 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 d70ac0c9..2cb4b142 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 4f0187ad..1b6741ad 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 f4ae9ef3..cd59be1a 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 0eee0171..4a9b9174 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 21756b69..ba52e4d1 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 77eb3a5e..807008df 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 378825da..5f71812b 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 bc5aacec..eb2d52cb 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 c0ee137c..fdb9296f 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 1a752e5e..657c4d19 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 3fbc8215..72bf40ef 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 a45541dc..85174e1f 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 caca2ab6..640da875 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 7e5845b6..f1792f7d 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 ba6a9312..69ea5272 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 eaaa0ee3..767ed8da 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 cb06b357..e96265d4 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 615a1428..f8192437 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 1b7258c7..71e058a8 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 b6e6f442..4868bfec 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 bdfc8b5b..c410acfd 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 c8be7891..03824dc7 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 acf78ef1..15d022b1 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 4c652f3f..51dad61a 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 59a71751..30983db2 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 be4c55af..f2bd8ff0 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 597a2b51..2e5c3930 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 e1bf6c1e..4ac5fffa 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 07f9f3bc..64c7b47f 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 4230f591..f1f45f65 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 26c5055e..1d883a09 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 c2f849f1..0d31505c 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 cf3f1a3b..b99b0027 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 31db2506..15dd6de9 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 c2d46b88..8a28d6c5 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 780c8c77..cf09aa15 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 8b63f4b3..2fb975e3 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 7baee7cf..ca19f198 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 6fe29c98..48b61491 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 a77b0f35..2a040234 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 a09faa45..cf62c7d5 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 a380f96b..a6d83864 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 b2517ad7..f46b9cd0 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 b8270e24..a248385e 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 bc4fb8e3..0816ae3c 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 a1f682c5..9871a453 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 3b691acd..fb8ab78b 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 b8c07aec..04b6eed8 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 967e6fa7..b3ef4203 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 711ebc37..17b88976 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 068dae9f..b165a3a0 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 798e7f36..ff2d37ea 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 b16757c5..6f5b3c28 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 72763d84..a7dbf064 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 aa800493..a2ce29f0 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 9388ee0a..1e9bdaa9 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 f38f1bda..7c0cea8a 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 0db3ee15..526fc8bd 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 b4090c60..ec28635a 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 c193680a..caffbaff 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 093d804e..155c5ba6 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 30075a8f..53a93798 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 d059bdb4..2cb96931 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 ce44dc65..08b16ed9 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 b7aab122..7207f210 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 8620be0d..bf70dd35 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 dab64939..d1e8c0b3 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 ee796da0..06f1f456 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 992d79d1..22d473e6 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 1b9abf02..39d14686 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 06351817..75f3b204 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 edc69812..6dbbe37a 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 2a996a28..6a194483 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 c244a3a8..5195478c 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 dcfadd84..ec6e3b2f 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 d65db66f..3a07005e 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 0c5eaf35..670b49c8 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 7d438f69..5a977e4e 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 9c347a5f..f4d40e6f 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 44956a76..1e427470 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 cc7e4fce..a2e8a5f9 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 93e5345f..8769b6a6 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 0408c9f9..98fa92fb 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 4b6640a7..d7473727 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 47248ee6..eb5c8d53 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 e2c3e7ac..9b60d174 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 425c9c52..f125ee07 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 2599f923..507c79e5 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 daf4df96..dd34a399 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 48955f89..25beff7c 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 335e0fd4..991bbbb5 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 894511b9..0b73f4b3 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 8c682322..3c72b4d4 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 4fee8a25..e0769490 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 fa5cb3c1..81d43cce 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 4c0bbbb9..44086ae5 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 9c694fc6..16ff89b2 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 434c20a3..acc5a607 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 83e14bf9..78bf9ffb 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 5f52a84f..1e7dcc10 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 ac9e105d..be0a0a03 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 fb8411ad..ddc66012 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 d5494a20..5e0152e6 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 4c52ea4f..3d959783 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 7f3cd9b6..4b74a4dc 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 ce276d4b..5349ffd0 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 553b236c..4d48d84e 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 4790565c..c3a8ae0a 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 3bcf4390..4af46e3a 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 45ebf69e..c62dc5be 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 76beb436..c0cc0595 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 88018ba3..a576202c 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 0e1209b5..1b65526d 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 09e7a2ed..8f61a649 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 9c1270a6..6e605f0a 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 f8210f76..d38a8c46 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 08c95260..865671a5 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 e940db26..23ceec56 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 d7d0d303..59434ead 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 16d47b48..c4751258 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 7ba82362..a8fba5db 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 098f04eb..35a85858 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 7be65b33..9ae432c5 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 b6ad6986..e14098af 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 95c0669d..d037e7e1 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 63418bc5..1c4d4a0e 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 2823a885..6f9f04fd 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 df61ad75..95cdea61 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 1d4681e9..68065fc8 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 3483aba7..5ba206e4 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 dc67c90e..b980fa67 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 a97eed82..78388ea9 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 a722822a..e634e291 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 60436b83..65e19be1 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 07107d1d..d4dc7728 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 a37c3b0c..962f1f97 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 582d679d..1f1932eb 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 66dd34c6..08300920 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 777e0887..b0db18b6 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 c043feab..38e8df3c 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 2ad92b0f..46ade15c 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 4bae6d1a..ea706e0e 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 26801384..c03f9af4 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 539b4f83..fa16e2b3 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 af2a791a..2535e42d 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 09766737..418b9455 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 d322c398..250b513d 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 c7eea4fe..2c9d1f41 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 cf94d9b8..2734d02a 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 605f1d61..9540343d 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 d0d56908..80a38e14 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 6cb354ea..14288090 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 a393be90..84968ac5 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 d2657fb4..363e1f04 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 1f373dc6..541e704b 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 aef44bcf..9dd5d0b0 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 0261f9c1..c7255271 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 5d9aa733..22d6e8d4 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 609dcee0..99750545 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 50dac732..e1b5289d 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 f8f13e2e..8319384e 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 06ff43a3..a3402e8d 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 8a066528..a3eda920 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 c2dcff57..fa89a5f1 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 2889161f..1a1241b7 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 83b15a2b..fb7d5725 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 4034c1d4..5ec3a7d3 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 e22a40a9..4e99ca1b 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 e7104914..12c2476e 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 e5ccca0a..ed05e981 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 cb5c8ab7..54b0b8da 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 7b44e8b9..6f3aa81f 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 76a515e7..252ccd88 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 9e1c4131..74031f03 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 {