diff --git a/.github/workflows/Validate_File_Contents.yaml b/.github/workflows/Validate_File_Contents.yaml new file mode 100644 index 000000000..365539b29 --- /dev/null +++ b/.github/workflows/Validate_File_Contents.yaml @@ -0,0 +1,36 @@ +name: Validate contents + +on: + workflow_dispatch: # manual trigger + + push: + paths: + - "examples/**/*.h*" + - "examples/**/*.c*" + - "plugin_*/**/*.c*" + - "plugin_*/**/*.h*" + - "plugin_*/**/*.c*" + - "shared/**/*.h*" + - "shared/**/*.c*" + + pull_request: + paths: + - "examples/**/*.h*" + - "examples/**/*.c*" + - "plugin_*/**/*.c*" + - "plugin_*/**/*.h*" + - "plugin_*/**/*.c*" + - "shared/**/*.h*" + - "shared/**/*.c*" + +jobs: + Validate_contents: + name: Validate contents + runs-on: ubuntu-latest + + steps: + - name: Checkout repository + uses: actions/checkout@v6 + + - name: Check files + run: node .github/workflows/scripts/Validate_Contents.js diff --git a/.github/workflows/scripts/Validate_Contents.js b/.github/workflows/scripts/Validate_Contents.js new file mode 100644 index 000000000..a01d9a89f --- /dev/null +++ b/.github/workflows/scripts/Validate_Contents.js @@ -0,0 +1,122 @@ +const fs = require("fs"); +const path = require("path"); + +let result = true; +result &= walkRecursive("./examples/"); +result &= walkRecursive("./plugin_II/"); +result &= walkRecursive("./plugin_III/"); +result &= walkRecursive("./plugin_vc/"); +result &= walkRecursive("./plugin_sa/"); +result &= walkRecursive("./plugin_IV/"); +result &= walkRecursive("./plugin_iii_unreal/"); +result &= walkRecursive("./plugin_vc_unreal/"); +result &= walkRecursive("./plugin_sa_unreal/"); +result &= walkRecursive("./shared/"); + +if (!result) + process.exit(1); // report workflow failed + + +function walkRecursive(dir) +{ + let result = true; + + const files = fs.readdirSync(dir, { withFileTypes: true }); + for (const file of files) + { + let filename = path.join(dir, file.name); + filename = filename.split(path.sep).join('/'); + + if (file.isDirectory()) + result &= walkRecursive(filename); + else + result &= processFile(filename); + } + + return result; +} + +function processFile(filename) +{ + let result = true; + + result &= processCodeFile(filename); + + return result; +} + +function processCodeFile(filename) +{ + // skip files + if (filename.includes("/bass/") || + filename.includes("/d3d/") || + filename.includes("/dxsdk/") || + filename.includes("/resource.h") || + filename.includes("/rw/") || + filename.includes("/rwd3d9/") || + filename.includes("/stdafx.h") || + filename.includes("/stdafx.cpp")) + return true; + + const headerExtensions = [".h", ".hpp"]; + const sourceExtensions = [".c", ".cpp"]; + const filetype = path.extname(filename).toLowerCase(); + + if (!headerExtensions.includes(filetype) && !sourceExtensions.includes(filetype)) + return true; // not code file + + let result = true; + + if (!filename.startsWith("examples/")) result &= verifyPluginSdkComment(filename, headerExtensions.includes(filetype)); // check comment header + + 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_iii_unreal/")) expected += " 3 Unreal)"; + if (filename.toLowerCase().startsWith("plugin_vc_unreal/")) expected += " Vice City Unreal)"; + if (filename.toLowerCase().startsWith("plugin_sa_unreal/")) expected += " San Andreas Unreal)"; + if (filename.toLowerCase().startsWith("shared/")) expected += ") SHARED"; + expected += " " + + if (isHeader) + expected += "header"; + else + expected += "source"; + expected += " file\n"; + + expected += " Authors: GTA Community. See more here\n"; + expected += " https://github.com/DK22Pac/plugin-sdk\n"; + expected += " Do not delete this comment block. Respect others' work!\n"; + expected += "*/"; + + const buffer = Buffer.alloc(expected.length + 100); + const fd = fs.openSync(filename, 'r'); + fs.readSync(fd, buffer, 0, expected.length + 100, 0); + fs.closeSync(fd); + let actual = buffer.toString('utf8'); + actual = actual.replace(/\r\n/g, "\n"); + + // compare lines + const actualLines = actual.split('\n'); + const expectedLines = expected.split('\n'); + for (let i = 0; i < expectedLines.length; i++) + { + if (actualLines[i] !== expectedLines[i]) + { + console.log(`::error file=${filename},line=${i+1},title=Invalid PSDK comment header::Expected "${expectedLines[i]}", found "${actualLines[i]}"`); + return false; + } + } + + return true; +} diff --git a/examples/Neon/KeyCheck.cpp b/examples/Neon/KeyCheck.cpp index 1f0adb859..f02f2dc2f 100644 --- a/examples/Neon/KeyCheck.cpp +++ b/examples/Neon/KeyCheck.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "KeyCheck.h" #include "plugin.h" diff --git a/examples/Neon/KeyCheck.h b/examples/Neon/KeyCheck.h index f83207c0e..9f87fc112 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) header 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_II/game_II/CPopulation.cpp b/plugin_II/game_II/CPopulation.cpp index 5f57cad7e..ac9ae3f44 100644 --- a/plugin_II/game_II/CPopulation.cpp +++ b/plugin_II/game_II/CPopulation.cpp @@ -1,5 +1,5 @@ /* - Plugin-SDK (Grand Theft Auto 2) header file + Plugin-SDK (Grand Theft Auto 2) source file Authors: GTA Community. See more here https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! diff --git a/plugin_II/game_II/tImage.h b/plugin_II/game_II/tImage.h index 48ea7ee7f..2f2a46c10 100644 --- a/plugin_II/game_II/tImage.h +++ b/plugin_II/game_II/tImage.h @@ -1,3 +1,9 @@ +/* + Plugin-SDK (Grand Theft Auto 2) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! +*/ #pragma once struct tImage { diff --git a/plugin_II/game_II/tLight.h b/plugin_II/game_II/tLight.h index 024e05c14..cb59ed063 100644 --- a/plugin_II/game_II/tLight.h +++ b/plugin_II/game_II/tLight.h @@ -1,3 +1,9 @@ +/* + Plugin-SDK (Grand Theft Auto 2) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! +*/ #pragma once struct tLight { diff --git a/plugin_II/game_II/tVertex.h b/plugin_II/game_II/tVertex.h index ac362c6a9..75ec8e2c2 100644 --- a/plugin_II/game_II/tVertex.h +++ b/plugin_II/game_II/tVertex.h @@ -1,3 +1,9 @@ +/* + Plugin-SDK (Grand Theft Auto 2) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! +*/ #pragma once struct tVertex { diff --git a/plugin_III/game_III/CAutoPilot.cpp b/plugin_III/game_III/CAutoPilot.cpp index e1250e1bf..d8d85a236 100644 --- a/plugin_III/game_III/CAutoPilot.cpp +++ b/plugin_III/game_III/CAutoPilot.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto 3) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto 3) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CAutoPilot.h" diff --git a/plugin_III/game_III/CAutoPilot.h b/plugin_III/game_III/CAutoPilot.h index 5a7644c9f..3b815f091 100644 --- a/plugin_III/game_III/CAutoPilot.h +++ b/plugin_III/game_III/CAutoPilot.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto 3) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto 3) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CPathFind.h" #include "eCarMission.h" diff --git a/plugin_III/game_III/CControllerConfigManager.cpp b/plugin_III/game_III/CControllerConfigManager.cpp index 5a22b0fb8..76fd4cc76 100644 --- a/plugin_III/game_III/CControllerConfigManager.cpp +++ b/plugin_III/game_III/CControllerConfigManager.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 "CControllerConfigManager.h" diff --git a/plugin_III/game_III/CControllerConfigManager.h b/plugin_III/game_III/CControllerConfigManager.h index 3612f92d6..28ba0033a 100644 --- a/plugin_III/game_III/CControllerConfigManager.h +++ b/plugin_III/game_III/CControllerConfigManager.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 #include "PluginBase.h" diff --git a/plugin_III/game_III/CControllerState.cpp b/plugin_III/game_III/CControllerState.cpp index ce60b91ed..1aab983f3 100644 --- a/plugin_III/game_III/CControllerState.cpp +++ b/plugin_III/game_III/CControllerState.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto 3) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto 3) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CControllerState.h" diff --git a/plugin_III/game_III/CControllerState.h b/plugin_III/game_III/CControllerState.h index 48a05b786..b58793c8a 100644 --- a/plugin_III/game_III/CControllerState.h +++ b/plugin_III/game_III/CControllerState.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto 3) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto 3) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" class CControllerState { diff --git a/plugin_III/game_III/CFileLoader.h b/plugin_III/game_III/CFileLoader.h index 81da9ccd8..70dbfd04e 100644 --- a/plugin_III/game_III/CFileLoader.h +++ b/plugin_III/game_III/CFileLoader.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto 3) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto 3) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "RenderWare.h" #include "CColModel.h" diff --git a/plugin_III/game_III/CFontDetails.cpp b/plugin_III/game_III/CFontDetails.cpp index ccc8a7e89..96b4f8320 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) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CFontDetails.h" diff --git a/plugin_III/game_III/CFontDetails.h b/plugin_III/game_III/CFontDetails.h index 658a4c97b..37bd166fd 100644 --- a/plugin_III/game_III/CFontDetails.h +++ b/plugin_III/game_III/CFontDetails.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto 3) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto 3) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CRGBA.h" #include "CVector2D.h" diff --git a/plugin_III/game_III/CHud.cpp b/plugin_III/game_III/CHud.cpp index c822730d6..9674d5366 100644 --- a/plugin_III/game_III/CHud.cpp +++ b/plugin_III/game_III/CHud.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 "CHud.h" diff --git a/plugin_III/game_III/CHud.h b/plugin_III/game_III/CHud.h index d605c6774..44045ea32 100644 --- a/plugin_III/game_III/CHud.h +++ b/plugin_III/game_III/CHud.h @@ -1,10 +1,10 @@ -#pragma once /* - 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 "CSprite2d.h" diff --git a/plugin_III/game_III/CKeyboardState.cpp b/plugin_III/game_III/CKeyboardState.cpp index b93cf4d75..fc10e2c28 100644 --- a/plugin_III/game_III/CKeyboardState.cpp +++ b/plugin_III/game_III/CKeyboardState.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto 3) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto 3) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CKeyboardState.h" diff --git a/plugin_III/game_III/CKeyboardState.h b/plugin_III/game_III/CKeyboardState.h index 8ba31ed05..bdc9d64e2 100644 --- a/plugin_III/game_III/CKeyboardState.h +++ b/plugin_III/game_III/CKeyboardState.h @@ -1,13 +1,10 @@ - - /* -Plugin-SDK (Grand Theft Auto 3) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto 3) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" class CKeyboardState { diff --git a/plugin_III/game_III/CMenuManager.cpp b/plugin_III/game_III/CMenuManager.cpp index 5984e8baa..6a2a2140c 100644 --- a/plugin_III/game_III/CMenuManager.cpp +++ b/plugin_III/game_III/CMenuManager.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 "CMenuManager.h" diff --git a/plugin_III/game_III/CMenuManager.h b/plugin_III/game_III/CMenuManager.h index 24afd27ca..be7fe1aaf 100644 --- a/plugin_III/game_III/CMenuManager.h +++ b/plugin_III/game_III/CMenuManager.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 #include "PluginBase.h" diff --git a/plugin_III/game_III/CPad.cpp b/plugin_III/game_III/CPad.cpp index 23274dcba..304312736 100644 --- a/plugin_III/game_III/CPad.cpp +++ b/plugin_III/game_III/CPad.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 "CPad.h" diff --git a/plugin_III/game_III/CPad.h b/plugin_III/game_III/CPad.h index b312afd90..8976d7cb4 100644 --- a/plugin_III/game_III/CPad.h +++ b/plugin_III/game_III/CPad.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 "CMouseControllerState.h" #include "CKeyboardState.h" diff --git a/plugin_III/game_III/CPedType.cpp b/plugin_III/game_III/CPedType.cpp index 4c3b27560..9527f41c5 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) 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_III/game_III/CPedType.h b/plugin_III/game_III/CPedType.h index 663739bdd..4c8334c07 100644 --- a/plugin_III/game_III/CPedType.h +++ b/plugin_III/game_III/CPedType.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto 3) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto 3) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" class CPedType { diff --git a/plugin_III/game_III/CPlayerInfo.cpp b/plugin_III/game_III/CPlayerInfo.cpp index ede5e8b1f..06f080c8f 100644 --- a/plugin_III/game_III/CPlayerInfo.cpp +++ b/plugin_III/game_III/CPlayerInfo.cpp @@ -1,5 +1,5 @@ /* - Plugin-SDK (Grand Theft Auto 3) header file + 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! diff --git a/plugin_III/game_III/CPointLights.cpp b/plugin_III/game_III/CPointLights.cpp index 2fc1e332f..410b10605 100644 --- a/plugin_III/game_III/CPointLights.cpp +++ b/plugin_III/game_III/CPointLights.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto 3) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto 3) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CPointLights.h" diff --git a/plugin_III/game_III/CPointLights.h b/plugin_III/game_III/CPointLights.h index a00538f74..1ae2d0393 100644 --- a/plugin_III/game_III/CPointLights.h +++ b/plugin_III/game_III/CPointLights.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto 3) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto 3) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" diff --git a/plugin_III/game_III/CRenderer.cpp b/plugin_III/game_III/CRenderer.cpp index b44ce7bd9..1f5200d93 100644 --- a/plugin_III/game_III/CRenderer.cpp +++ b/plugin_III/game_III/CRenderer.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 "CRenderer.h" diff --git a/plugin_III/game_III/CRenderer.h b/plugin_III/game_III/CRenderer.h index 5b8bce525..6e0e087f4 100644 --- a/plugin_III/game_III/CRenderer.h +++ b/plugin_III/game_III/CRenderer.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 #include "PluginBase.h" diff --git a/plugin_III/game_III/CReplay.cpp b/plugin_III/game_III/CReplay.cpp index 5ef4d401b..d96a04ea9 100644 --- a/plugin_III/game_III/CReplay.cpp +++ b/plugin_III/game_III/CReplay.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 "CReplay.h" diff --git a/plugin_III/game_III/CReplay.h b/plugin_III/game_III/CReplay.h index 8612ec1e1..be3b992b7 100644 --- a/plugin_III/game_III/CReplay.h +++ b/plugin_III/game_III/CReplay.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 #include "PluginBase.h" diff --git a/plugin_III/game_III/CRunningScript.cpp b/plugin_III/game_III/CRunningScript.cpp index 3ca360021..434cc1845 100644 --- a/plugin_III/game_III/CRunningScript.cpp +++ b/plugin_III/game_III/CRunningScript.cpp @@ -1,5 +1,5 @@ /* - Plugin-SDK (Grand Theft Auto 3) header file + 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! diff --git a/plugin_III/game_III/CStats.cpp b/plugin_III/game_III/CStats.cpp index 0c2894de1..1c6647845 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) source 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/CStreamingInfo.cpp b/plugin_III/game_III/CStreamingInfo.cpp index 1c97d483b..bca6bab5c 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) source 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/CTheScripts.cpp b/plugin_III/game_III/CTheScripts.cpp index 75a3083dd..836316792 100644 --- a/plugin_III/game_III/CTheScripts.cpp +++ b/plugin_III/game_III/CTheScripts.cpp @@ -1,5 +1,5 @@ /* - Plugin-SDK (Grand Theft Auto 3) header file + 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! diff --git a/plugin_III/game_III/CWeaponEffects.cpp b/plugin_III/game_III/CWeaponEffects.cpp index 2f2d4417a..cb48add8f 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) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CWeaponEffects.h" diff --git a/plugin_III/game_III/CWeaponEffects.h b/plugin_III/game_III/CWeaponEffects.h index 0f8f3e58a..c26263bff 100644 --- a/plugin_III/game_III/CWeaponEffects.h +++ b/plugin_III/game_III/CWeaponEffects.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto 3) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto 3) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" #include "CRGBA.h" diff --git a/plugin_III/game_III/CWeaponInfo.cpp b/plugin_III/game_III/CWeaponInfo.cpp index aad30a685..4743b9971 100644 --- a/plugin_III/game_III/CWeaponInfo.cpp +++ b/plugin_III/game_III/CWeaponInfo.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto 3) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto 3) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CWeaponInfo.h" diff --git a/plugin_III/game_III/cAudioManager.cpp b/plugin_III/game_III/cAudioManager.cpp index 6469128ea..3144e9555 100644 --- a/plugin_III/game_III/cAudioManager.cpp +++ b/plugin_III/game_III/cAudioManager.cpp @@ -1,5 +1,5 @@ /* - Plugin-SDK (Grand Theft Auto) source file + 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! diff --git a/plugin_III/game_III/cSampleManager.cpp b/plugin_III/game_III/cSampleManager.cpp index 8d8b145b7..9f2b52a55 100644 --- a/plugin_III/game_III/cSampleManager.cpp +++ b/plugin_III/game_III/cSampleManager.cpp @@ -1,8 +1,8 @@ /* - Plugin-SDK (Grand Theft Auto III) 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 "cSampleManager.h" diff --git a/plugin_III/game_III/cSampleManager.h b/plugin_III/game_III/cSampleManager.h index 85c54608b..10db0c122 100644 --- a/plugin_III/game_III/cSampleManager.h +++ b/plugin_III/game_III/cSampleManager.h @@ -1,8 +1,8 @@ /* - Plugin-SDK (Grand Theft Auto III) header file - Authors: GTA 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" diff --git a/plugin_III/game_III/enums/eBridgeState.h b/plugin_III/game_III/enums/eBridgeState.h index 30000e8ac..439a99759 100644 --- a/plugin_III/game_III/enums/eBridgeState.h +++ b/plugin_III/game_III/enums/eBridgeState.h @@ -1,5 +1,5 @@ /* - Plugin-SDK (Grand Theft Auto) header file + 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! diff --git a/plugin_III/game_III/enums/eCoronaType.h b/plugin_III/game_III/enums/eCoronaType.h index 6ae4deced..91d6edb69 100644 --- a/plugin_III/game_III/enums/eCoronaType.h +++ b/plugin_III/game_III/enums/eCoronaType.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto 3) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto 3) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_III/game_III/enums/eCrimeType.h b/plugin_III/game_III/enums/eCrimeType.h index 75f057efc..55049325a 100644 --- a/plugin_III/game_III/enums/eCrimeType.h +++ b/plugin_III/game_III/enums/eCrimeType.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto 3) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto 3) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_III/game_III/enums/ePedModel.h b/plugin_III/game_III/enums/ePedModel.h index 89317d3e8..568eb625e 100644 --- a/plugin_III/game_III/enums/ePedModel.h +++ b/plugin_III/game_III/enums/ePedModel.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto 3) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto 3) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_III/game_III/enums/eSceneCommands.h b/plugin_III/game_III/enums/eSceneCommands.h index 097667375..418b94551 100644 --- a/plugin_III/game_III/enums/eSceneCommands.h +++ b/plugin_III/game_III/enums/eSceneCommands.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto 3) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto 3) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_III/game_III/enums/eWeaponModel.h b/plugin_III/game_III/enums/eWeaponModel.h index 3ea28ba7b..ff5ee8154 100644 --- a/plugin_III/game_III/enums/eWeaponModel.h +++ b/plugin_III/game_III/enums/eWeaponModel.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto 3) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto 3) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_III/game_III/enums/eWeaponType.h b/plugin_III/game_III/enums/eWeaponType.h index f42289246..ef7a76ca5 100644 --- a/plugin_III/game_III/enums/eWeaponType.h +++ b/plugin_III/game_III/enums/eWeaponType.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto 3) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto 3) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_III/game_III/enums/eWeather.h b/plugin_III/game_III/enums/eWeather.h index 710720bce..24e6f2d40 100644 --- a/plugin_III/game_III/enums/eWeather.h +++ b/plugin_III/game_III/enums/eWeather.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto 3) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto 3) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_III/game_III/enums/eWheelModel.h b/plugin_III/game_III/enums/eWheelModel.h index c7e681de0..ba52b4f5c 100644 --- a/plugin_III/game_III/enums/eWheelModel.h +++ b/plugin_III/game_III/enums/eWheelModel.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto 3) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto 3) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_III/game_III/tTransmissionGear.h b/plugin_III/game_III/tTransmissionGear.h index fd9a405fa..4f8a94aa9 100644 --- a/plugin_III/game_III/tTransmissionGear.h +++ b/plugin_III/game_III/tTransmissionGear.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto 3) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto 3) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" struct tTransmissionGear { diff --git a/plugin_IV/game_IV/CCamScriptInstruction.cpp b/plugin_IV/game_IV/CCamScriptInstruction.cpp index 191578f92..da840a70b 100644 --- a/plugin_IV/game_IV/CCamScriptInstruction.cpp +++ b/plugin_IV/game_IV/CCamScriptInstruction.cpp @@ -1,5 +1,5 @@ /* - Plugin-SDK (Grand Theft Auto IV) header file + Plugin-SDK (Grand Theft Auto IV) source file Authors: GTA Community. See more here https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! diff --git a/plugin_IV/game_IV/CGrcState_SetLightingMode.cpp b/plugin_IV/game_IV/CGrcState_SetLightingMode.cpp index 5fb6f8e96..7e7b90d39 100644 --- a/plugin_IV/game_IV/CGrcState_SetLightingMode.cpp +++ b/plugin_IV/game_IV/CGrcState_SetLightingMode.cpp @@ -1,5 +1,5 @@ /* - Plugin-SDK (Grand Theft Auto IV) header file + Plugin-SDK (Grand Theft Auto IV) source file Authors: GTA Community. See more here https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! diff --git a/plugin_IV/game_IV/CHudColours.cpp b/plugin_IV/game_IV/CHudColours.cpp index bf4e59002..281d97d2a 100644 --- a/plugin_IV/game_IV/CHudColours.cpp +++ b/plugin_IV/game_IV/CHudColours.cpp @@ -1,5 +1,5 @@ /* - Plugin-SDK (Grand Theft Auto IV) header file + Plugin-SDK (Grand Theft Auto IV) source file Authors: GTA Community. See more here https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! diff --git a/plugin_IV/game_IV/CHudComponent.cpp b/plugin_IV/game_IV/CHudComponent.cpp index 969b35ca6..00880cd99 100644 --- a/plugin_IV/game_IV/CHudComponent.cpp +++ b/plugin_IV/game_IV/CHudComponent.cpp @@ -1,5 +1,5 @@ /* - Plugin-SDK (Grand Theft Auto IV) header file + Plugin-SDK (Grand Theft Auto IV) source file Authors: GTA Community. See more here https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! diff --git a/plugin_IV/game_IV/CUserDisplay.h b/plugin_IV/game_IV/CUserDisplay.h index 168290a59..c69cc8bc1 100644 --- a/plugin_IV/game_IV/CUserDisplay.h +++ b/plugin_IV/game_IV/CUserDisplay.h @@ -1,8 +1,8 @@ /* - Plugin-SDK (Grand Theft Auto IV) header file - Authors: GTA Community. See more here - https://github.com/DK22Pac/plugin-sdk - Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto IV) header 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_IV/game_IV/eModelHashes.h b/plugin_IV/game_IV/eModelHashes.h index 0ade55f86..39d5753a6 100644 --- a/plugin_IV/game_IV/eModelHashes.h +++ b/plugin_IV/game_IV/eModelHashes.h @@ -1,3 +1,9 @@ +/* + Plugin-SDK (Grand Theft Auto IV) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! +*/ #pragma once enum eModelHashes { diff --git a/plugin_iii_unreal/game_iii_unreal/CRect.h b/plugin_iii_unreal/game_iii_unreal/CRect.h index 6f31128e3..a60e32571 100644 --- a/plugin_iii_unreal/game_iii_unreal/CRect.h +++ b/plugin_iii_unreal/game_iii_unreal/CRect.h @@ -1,5 +1,5 @@ /* - Plugin-SDK (Grand Theft 3 Unreal) header file + Plugin-SDK (Grand Theft Auto 3 Unreal) header file Authors: GTA Community. See more here https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! diff --git a/plugin_sa/game_sa/CAEWeaponAudioEntity.cpp b/plugin_sa/game_sa/CAEWeaponAudioEntity.cpp index 877d5a334..5ba6faf1a 100644 --- a/plugin_sa/game_sa/CAEWeaponAudioEntity.cpp +++ b/plugin_sa/game_sa/CAEWeaponAudioEntity.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CAEWeaponAudioEntity.h" diff --git a/plugin_sa/game_sa/CAnimBlendAssocGroup.cpp b/plugin_sa/game_sa/CAnimBlendAssocGroup.cpp index 3338c4919..a878cbe1e 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) source 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/CAnimBlendHierarchy.cpp b/plugin_sa/game_sa/CAnimBlendHierarchy.cpp index d5d8892da..e9901828a 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) source 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/CAnimBlendNode.cpp b/plugin_sa/game_sa/CAnimBlendNode.cpp index eb3c10b7d..e81fa1599 100644 --- a/plugin_sa/game_sa/CAnimBlendNode.cpp +++ b/plugin_sa/game_sa/CAnimBlendNode.cpp @@ -1,10 +1,9 @@ /* - Plugin-SDK (Grand Theft Auto San Andreas) header file + 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 "CAnimBlendNode.h" // Converted from thiscall void CAnimBlendNode::CalcDeltas(void) 0x4D0190 diff --git a/plugin_sa/game_sa/CAnimBlendSequence.cpp b/plugin_sa/game_sa/CAnimBlendSequence.cpp index efb21190a..12ab1f5c6 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) source 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/CAnimManager.cpp b/plugin_sa/game_sa/CAnimManager.cpp index 44f9e1a27..3fc53de46 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 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 "CAnimManager.h" diff --git a/plugin_sa/game_sa/CCam.h b/plugin_sa/game_sa/CCam.h index dc0e9516b..eb88c4528 100644 --- a/plugin_sa/game_sa/CCam.h +++ b/plugin_sa/game_sa/CCam.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "eCamMode.h" #include "CVector.h" diff --git a/plugin_sa/game_sa/CCamera.cpp b/plugin_sa/game_sa/CCamera.cpp index eddae10a6..ac3c8facd 100644 --- a/plugin_sa/game_sa/CCamera.cpp +++ b/plugin_sa/game_sa/CCamera.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CCamera.h" diff --git a/plugin_sa/game_sa/CCamera.h b/plugin_sa/game_sa/CCamera.h index c2211bc37..2b02d0219 100644 --- a/plugin_sa/game_sa/CCamera.h +++ b/plugin_sa/game_sa/CCamera.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CPlaceable.h" #include "CCam.h" diff --git a/plugin_sa/game_sa/CCarAI.cpp b/plugin_sa/game_sa/CCarAI.cpp index ad0b9f194..8cf592172 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) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ - #include "CCarAI.h" // Converted from cdecl void CCarAI::BackToCruisingIfNoWantedLevel(CVehicle *pVehicle) 0x41BFA0 diff --git a/plugin_sa/game_sa/CCarAI.h b/plugin_sa/game_sa/CCarAI.h index fe96922b8..3ff4c06d4 100644 --- a/plugin_sa/game_sa/CCarAI.h +++ b/plugin_sa/game_sa/CCarAI.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once #include "PluginBase.h" diff --git a/plugin_sa/game_sa/CCarGenerator.cpp b/plugin_sa/game_sa/CCarGenerator.cpp index 07adcc7af..df859e8f0 100644 --- a/plugin_sa/game_sa/CCarGenerator.cpp +++ b/plugin_sa/game_sa/CCarGenerator.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CCarGenerator.h" diff --git a/plugin_sa/game_sa/CClothes.cpp b/plugin_sa/game_sa/CClothes.cpp index 657c099c0..049950823 100644 --- a/plugin_sa/game_sa/CClothes.cpp +++ b/plugin_sa/game_sa/CClothes.cpp @@ -1,10 +1,9 @@ /* - Plugin-SDK (Grand Theft Auto San Andreas) header file + 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 "CClothes.h" // Converted from cdecl void CClothes::ConstructPedModel(uint modelid,CPedClothesDesc &newclothes,CPedClothesDesc const*oldclothes,bool bCutscenePlayer) 0x5A81E0 diff --git a/plugin_sa/game_sa/CClothesBuilder.cpp b/plugin_sa/game_sa/CClothesBuilder.cpp index 068f680ac..08b0839d9 100644 --- a/plugin_sa/game_sa/CClothesBuilder.cpp +++ b/plugin_sa/game_sa/CClothesBuilder.cpp @@ -1,10 +1,9 @@ /* - Plugin-SDK (Grand Theft Auto San Andreas) header file + 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 "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/CClothesBuilder.h b/plugin_sa/game_sa/CClothesBuilder.h index b47d21b08..7953cfed7 100644 --- a/plugin_sa/game_sa/CClothesBuilder.h +++ b/plugin_sa/game_sa/CClothesBuilder.h @@ -1,4 +1,3 @@ - /* Plugin-SDK (Grand Theft Auto San Andreas) header file Authors: GTA Community. See more here diff --git a/plugin_sa/game_sa/CColourSet.h b/plugin_sa/game_sa/CColourSet.h index f4eaad1df..af57e11af 100644 --- a/plugin_sa/game_sa/CColourSet.h +++ b/plugin_sa/game_sa/CColourSet.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" class PLUGIN_API CColourSet { diff --git a/plugin_sa/game_sa/CCullZones.cpp b/plugin_sa/game_sa/CCullZones.cpp index 003f21a97..34bc2012d 100644 --- a/plugin_sa/game_sa/CCullZones.cpp +++ b/plugin_sa/game_sa/CCullZones.cpp @@ -1,4 +1,4 @@ - /* +/* Plugin-SDK (Grand Theft Auto San Andreas) source file Authors: GTA Community. See more here https://github.com/DK22Pac/plugin-sdk diff --git a/plugin_sa/game_sa/CCustomCarEnvMapPipeline.cpp b/plugin_sa/game_sa/CCustomCarEnvMapPipeline.cpp index c99710302..e08443679 100644 --- a/plugin_sa/game_sa/CCustomCarEnvMapPipeline.cpp +++ b/plugin_sa/game_sa/CCustomCarEnvMapPipeline.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CCustomCarEnvMapPipeline.h" diff --git a/plugin_sa/game_sa/CExplosion.h b/plugin_sa/game_sa/CExplosion.h index 21066fc6c..369bc5a84 100644 --- a/plugin_sa/game_sa/CExplosion.h +++ b/plugin_sa/game_sa/CExplosion.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" #include "CAEExplosionAudioEntity.h" diff --git a/plugin_sa/game_sa/CLoadingScreen.cpp b/plugin_sa/game_sa/CLoadingScreen.cpp index 4bbfff3ab..04f552c10 100644 --- a/plugin_sa/game_sa/CLoadingScreen.cpp +++ b/plugin_sa/game_sa/CLoadingScreen.cpp @@ -1,10 +1,9 @@ /* - Plugin-SDK (Grand Theft Auto San Andreas) header file + 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 "CLoadingScreen.h" int &CLoadingScreen::m_currDisplayedSplash = *(int*)0x8D093C; diff --git a/plugin_sa/game_sa/CObjectData.cpp b/plugin_sa/game_sa/CObjectData.cpp index fc1fb60cf..2d9f403de 100644 --- a/plugin_sa/game_sa/CObjectData.cpp +++ b/plugin_sa/game_sa/CObjectData.cpp @@ -1,5 +1,5 @@ /* - Plugin-SDK (Grand Theft Auto San Andreas) header file + 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! diff --git a/plugin_sa/game_sa/CPedClothesDesc.cpp b/plugin_sa/game_sa/CPedClothesDesc.cpp index 8f3c2d97e..24e29b8a3 100644 --- a/plugin_sa/game_sa/CPedClothesDesc.cpp +++ b/plugin_sa/game_sa/CPedClothesDesc.cpp @@ -1,10 +1,9 @@ /* - Plugin-SDK (Grand Theft Auto San Andreas) header file + 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 "CPedClothesDesc.h" diff --git a/plugin_sa/game_sa/CPedDamageResponse.h b/plugin_sa/game_sa/CPedDamageResponse.h index 993101c93..b118fb49c 100644 --- a/plugin_sa/game_sa/CPedDamageResponse.h +++ b/plugin_sa/game_sa/CPedDamageResponse.h @@ -1,5 +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! +*/ #pragma once - #include "PluginBase.h" class CPedDamageResponse { diff --git a/plugin_sa/game_sa/CPedIK.cpp b/plugin_sa/game_sa/CPedIK.cpp index 71acdd01b..f5d3d29a5 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) source 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/CPedStuckChecker.h b/plugin_sa/game_sa/CPedStuckChecker.h index 7b67b2d4c..338b99395 100644 --- a/plugin_sa/game_sa/CPedStuckChecker.h +++ b/plugin_sa/game_sa/CPedStuckChecker.h @@ -1,11 +1,10 @@ /* - Plugin-SDK (Grand Theft Auto San Andreas) source file + 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 "CVector.h" class CPed; diff --git a/plugin_sa/game_sa/CPedType.cpp b/plugin_sa/game_sa/CPedType.cpp index ce918bf1a..1fd4a5bb6 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/CPlayerInfo.cpp b/plugin_sa/game_sa/CPlayerInfo.cpp index f054ba176..375725276 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/CPools.h b/plugin_sa/game_sa/CPools.h index bb3c5036b..3997b4899 100644 --- a/plugin_sa/game_sa/CPools.h +++ b/plugin_sa/game_sa/CPools.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CPool.h" #include "CCopPed.h" diff --git a/plugin_sa/game_sa/CPopCycle.cpp b/plugin_sa/game_sa/CPopCycle.cpp index d9271bb85..05cb2f005 100644 --- a/plugin_sa/game_sa/CPopCycle.cpp +++ b/plugin_sa/game_sa/CPopCycle.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CPopCycle.h" diff --git a/plugin_sa/game_sa/CPtrNode.h b/plugin_sa/game_sa/CPtrNode.h index 71452f32b..3bfc1948a 100644 --- a/plugin_sa/game_sa/CPtrNode.h +++ b/plugin_sa/game_sa/CPtrNode.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/CRadar.h b/plugin_sa/game_sa/CRadar.h index f8b4cb67e..01acc853d 100644 --- a/plugin_sa/game_sa/CRadar.h +++ b/plugin_sa/game_sa/CRadar.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" #include "CRGBA.h" diff --git a/plugin_sa/game_sa/CReplay.cpp b/plugin_sa/game_sa/CReplay.cpp index d539f374f..84b1c999c 100644 --- a/plugin_sa/game_sa/CReplay.cpp +++ b/plugin_sa/game_sa/CReplay.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 "CReplay.h" diff --git a/plugin_sa/game_sa/CReplay.h b/plugin_sa/game_sa/CReplay.h index f9bc8fdf2..1ad0fe306 100644 --- a/plugin_sa/game_sa/CReplay.h +++ b/plugin_sa/game_sa/CReplay.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/CRoadBlocks.h b/plugin_sa/game_sa/CRoadBlocks.h index 9a814558f..744933f57 100644 --- a/plugin_sa/game_sa/CRoadBlocks.h +++ b/plugin_sa/game_sa/CRoadBlocks.h @@ -2,10 +2,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! + 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/CRunningScript.cpp b/plugin_sa/game_sa/CRunningScript.cpp index 7636085f7..f2a526a7f 100644 --- a/plugin_sa/game_sa/CRunningScript.cpp +++ b/plugin_sa/game_sa/CRunningScript.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CRunningScript.h" diff --git a/plugin_sa/game_sa/CShopping.cpp b/plugin_sa/game_sa/CShopping.cpp index 816f0cc5a..0fccc9ac1 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/CStuntJumpManager.cpp b/plugin_sa/game_sa/CStuntJumpManager.cpp index 237ef2b38..84ac8f17f 100644 --- a/plugin_sa/game_sa/CStuntJumpManager.cpp +++ b/plugin_sa/game_sa/CStuntJumpManager.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) Source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CStuntJumpManager.h" diff --git a/plugin_sa/game_sa/CTagManager.cpp b/plugin_sa/game_sa/CTagManager.cpp index 4a6c33de6..522e1760c 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/CTaskComplexClimb.cpp b/plugin_sa/game_sa/CTaskComplexClimb.cpp index edfac2f9a..09cb20e60 100644 --- a/plugin_sa/game_sa/CTaskComplexClimb.cpp +++ b/plugin_sa/game_sa/CTaskComplexClimb.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CTaskComplexClimb.h" diff --git a/plugin_sa/game_sa/CTaskComplexClimb.h b/plugin_sa/game_sa/CTaskComplexClimb.h index cd5ac5375..a3c742e95 100644 --- a/plugin_sa/game_sa/CTaskComplexClimb.h +++ b/plugin_sa/game_sa/CTaskComplexClimb.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskComplexJump.h" diff --git a/plugin_sa/game_sa/CTaskComplexCopInCar.cpp b/plugin_sa/game_sa/CTaskComplexCopInCar.cpp index 2e4bdb2be..4bfec704e 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) source 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/CTaskComplexDie.cpp b/plugin_sa/game_sa/CTaskComplexDie.cpp index d93550d2d..ead7b1628 100644 --- a/plugin_sa/game_sa/CTaskComplexDie.cpp +++ b/plugin_sa/game_sa/CTaskComplexDie.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CTaskComplexDie.h" diff --git a/plugin_sa/game_sa/CTaskComplexDie.h b/plugin_sa/game_sa/CTaskComplexDie.h index b228e482c..1761125e2 100644 --- a/plugin_sa/game_sa/CTaskComplexDie.h +++ b/plugin_sa/game_sa/CTaskComplexDie.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskComplex.h" #include "eWeaponType.h" diff --git a/plugin_sa/game_sa/CTaskComplexDriveFireTruck.cpp b/plugin_sa/game_sa/CTaskComplexDriveFireTruck.cpp index c367ed9e8..bb742db33 100644 --- a/plugin_sa/game_sa/CTaskComplexDriveFireTruck.cpp +++ b/plugin_sa/game_sa/CTaskComplexDriveFireTruck.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CTaskComplex.h" #include "CTaskComplexDriveFireTruck.h" diff --git a/plugin_sa/game_sa/CTaskComplexDriveFireTruck.h b/plugin_sa/game_sa/CTaskComplexDriveFireTruck.h index 72cbe95c1..48d125672 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) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! +*/ +#pragma once #include "PluginBase.h" #include "CVehicle.h" #include "CTaskComplex.h" diff --git a/plugin_sa/game_sa/CTaskComplexEnterBoatAsDriver.cpp b/plugin_sa/game_sa/CTaskComplexEnterBoatAsDriver.cpp index de4c2abd5..e6812f78c 100644 --- a/plugin_sa/game_sa/CTaskComplexEnterBoatAsDriver.cpp +++ b/plugin_sa/game_sa/CTaskComplexEnterBoatAsDriver.cpp @@ -1,10 +1,9 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ - #include "CTaskComplexEnterBoatAsDriver.h" CTaskComplexEnterBoatAsDriver::CTaskComplexEnterBoatAsDriver(CVehicle* pTargetVehicle) : CTaskComplex(plugin::dummy) diff --git a/plugin_sa/game_sa/CTaskComplexEnterBoatAsDriver.h b/plugin_sa/game_sa/CTaskComplexEnterBoatAsDriver.h index 1b72bb9b2..6ab80d7d5 100644 --- a/plugin_sa/game_sa/CTaskComplexEnterBoatAsDriver.h +++ b/plugin_sa/game_sa/CTaskComplexEnterBoatAsDriver.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskComplex.h" #include "CVehicle.h" diff --git a/plugin_sa/game_sa/CTaskComplexEnterCar.cpp b/plugin_sa/game_sa/CTaskComplexEnterCar.cpp index 45fde3531..0f9fd63b8 100644 --- a/plugin_sa/game_sa/CTaskComplexEnterCar.cpp +++ b/plugin_sa/game_sa/CTaskComplexEnterCar.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CTaskComplexEnterCar.h" diff --git a/plugin_sa/game_sa/CTaskComplexEnterCar.h b/plugin_sa/game_sa/CTaskComplexEnterCar.h index 33f52c602..302287518 100644 --- a/plugin_sa/game_sa/CTaskComplexEnterCar.h +++ b/plugin_sa/game_sa/CTaskComplexEnterCar.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskComplex.h" #include "CPathFind.h" diff --git a/plugin_sa/game_sa/CTaskComplexEnterCarAsDriver.cpp b/plugin_sa/game_sa/CTaskComplexEnterCarAsDriver.cpp index b2cf8e2e3..83fdf6aeb 100644 --- a/plugin_sa/game_sa/CTaskComplexEnterCarAsDriver.cpp +++ b/plugin_sa/game_sa/CTaskComplexEnterCarAsDriver.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CTaskComplexEnterCarAsDriver.h" diff --git a/plugin_sa/game_sa/CTaskComplexEnterCarAsDriver.h b/plugin_sa/game_sa/CTaskComplexEnterCarAsDriver.h index f9fdc3a64..37f1f23b6 100644 --- a/plugin_sa/game_sa/CTaskComplexEnterCarAsDriver.h +++ b/plugin_sa/game_sa/CTaskComplexEnterCarAsDriver.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskComplexEnterCar.h" diff --git a/plugin_sa/game_sa/CTaskComplexEnterCarAsPassenger.cpp b/plugin_sa/game_sa/CTaskComplexEnterCarAsPassenger.cpp index 6c622073d..c1b4a6544 100644 --- a/plugin_sa/game_sa/CTaskComplexEnterCarAsPassenger.cpp +++ b/plugin_sa/game_sa/CTaskComplexEnterCarAsPassenger.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CTaskComplexEnterCarAsPassenger.h" diff --git a/plugin_sa/game_sa/CTaskComplexEnterCarAsPassenger.h b/plugin_sa/game_sa/CTaskComplexEnterCarAsPassenger.h index 6cff3a1d8..0525283b7 100644 --- a/plugin_sa/game_sa/CTaskComplexEnterCarAsPassenger.h +++ b/plugin_sa/game_sa/CTaskComplexEnterCarAsPassenger.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskComplexEnterCar.h" diff --git a/plugin_sa/game_sa/CTaskComplexFacial.cpp b/plugin_sa/game_sa/CTaskComplexFacial.cpp index ddab962fa..6c5cb2f9d 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) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ - #include "CTaskComplexFacial.h" CTaskComplexFacial::CTaskComplexFacial() : CTaskComplex(plugin::dummy) diff --git a/plugin_sa/game_sa/CTaskComplexFacial.h b/plugin_sa/game_sa/CTaskComplexFacial.h index e514c8508..4bb4f92ad 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 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 "CTaskSimpleFacial.h" diff --git a/plugin_sa/game_sa/CTaskComplexJump.cpp b/plugin_sa/game_sa/CTaskComplexJump.cpp index a038dae97..afe799ea3 100644 --- a/plugin_sa/game_sa/CTaskComplexJump.cpp +++ b/plugin_sa/game_sa/CTaskComplexJump.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CTaskComplexJump.h" diff --git a/plugin_sa/game_sa/CTaskComplexJump.h b/plugin_sa/game_sa/CTaskComplexJump.h index bb97e93bf..8822c0842 100644 --- a/plugin_sa/game_sa/CTaskComplexJump.h +++ b/plugin_sa/game_sa/CTaskComplexJump.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskComplex.h" diff --git a/plugin_sa/game_sa/CTaskComplexKillPedFromBoat.cpp b/plugin_sa/game_sa/CTaskComplexKillPedFromBoat.cpp index 2057a1a12..5160c4e64 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) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ - #include "CTaskComplexKillPedFromBoat.h" CTaskComplexKillPedFromBoat::CTaskComplexKillPedFromBoat(CPed* ped) : CTaskComplex(plugin::dummy) diff --git a/plugin_sa/game_sa/CTaskComplexKillPedFromBoat.h b/plugin_sa/game_sa/CTaskComplexKillPedFromBoat.h index 28a3883f6..021440ddf 100644 --- a/plugin_sa/game_sa/CTaskComplexKillPedFromBoat.h +++ b/plugin_sa/game_sa/CTaskComplexKillPedFromBoat.h @@ -1,11 +1,10 @@ /* - Plugin-SDK (Grand Theft Auto) header file + 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 "CPed.h" diff --git a/plugin_sa/game_sa/CTaskComplexLeaveCar.cpp b/plugin_sa/game_sa/CTaskComplexLeaveCar.cpp index 0f07ec79e..08a875c93 100644 --- a/plugin_sa/game_sa/CTaskComplexLeaveCar.cpp +++ b/plugin_sa/game_sa/CTaskComplexLeaveCar.cpp @@ -1,10 +1,9 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ - #include "CTaskComplexLeaveCar.h" CTaskComplexLeaveCar::CTaskComplexLeaveCar(CVehicle* pTargetVehicle, int nTargetDoor, int nDelayTime, bool bSensibleLeaveCar, bool bForceGetOut) : CTaskComplex(plugin::dummy) diff --git a/plugin_sa/game_sa/CTaskComplexLeaveCar.h b/plugin_sa/game_sa/CTaskComplexLeaveCar.h index 2da6d30d3..503fb3039 100644 --- a/plugin_sa/game_sa/CTaskComplexLeaveCar.h +++ b/plugin_sa/game_sa/CTaskComplexLeaveCar.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskComplex.h" #include "CVehicle.h" diff --git a/plugin_sa/game_sa/CTaskComplexMedicTreatInjuredPed.cpp b/plugin_sa/game_sa/CTaskComplexMedicTreatInjuredPed.cpp index 40f4606c1..e9ea75e14 100644 --- a/plugin_sa/game_sa/CTaskComplexMedicTreatInjuredPed.cpp +++ b/plugin_sa/game_sa/CTaskComplexMedicTreatInjuredPed.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CTaskComplex.h" #include "CTaskComplexMedicTreatInjuredPed.h" diff --git a/plugin_sa/game_sa/CTaskComplexMedicTreatInjuredPed.h b/plugin_sa/game_sa/CTaskComplexMedicTreatInjuredPed.h index 8dec57f81..3afb43fc5 100644 --- a/plugin_sa/game_sa/CTaskComplexMedicTreatInjuredPed.h +++ b/plugin_sa/game_sa/CTaskComplexMedicTreatInjuredPed.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) header 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/CTaskComplexStuckInAir.cpp b/plugin_sa/game_sa/CTaskComplexStuckInAir.cpp index d6402fd07..de5b3954c 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) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ - #include "CTaskComplexStuckInAir.h" CTaskComplexStuckInAir::CTaskComplexStuckInAir() : CTaskComplex(plugin::dummy) diff --git a/plugin_sa/game_sa/CTaskComplexStuckInAir.h b/plugin_sa/game_sa/CTaskComplexStuckInAir.h index 43f55afd1..86ecfa9bc 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 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/CTaskComplexSunbathe.cpp b/plugin_sa/game_sa/CTaskComplexSunbathe.cpp index b04448af4..44f26e0da 100644 --- a/plugin_sa/game_sa/CTaskComplexSunbathe.cpp +++ b/plugin_sa/game_sa/CTaskComplexSunbathe.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CTaskComplexSunbathe.h" diff --git a/plugin_sa/game_sa/CTaskComplexSunbathe.h b/plugin_sa/game_sa/CTaskComplexSunbathe.h index 3c1590d46..98f8c506b 100644 --- a/plugin_sa/game_sa/CTaskComplexSunbathe.h +++ b/plugin_sa/game_sa/CTaskComplexSunbathe.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskComplex.h" #include "CTaskTimer.h" diff --git a/plugin_sa/game_sa/CTaskComplexUseMobilePhone.cpp b/plugin_sa/game_sa/CTaskComplexUseMobilePhone.cpp index 28afbb466..289774d96 100644 --- a/plugin_sa/game_sa/CTaskComplexUseMobilePhone.cpp +++ b/plugin_sa/game_sa/CTaskComplexUseMobilePhone.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CTaskComplexUseMobilePhone.h" diff --git a/plugin_sa/game_sa/CTaskComplexUseMobilePhone.h b/plugin_sa/game_sa/CTaskComplexUseMobilePhone.h index a01916c7c..77999850f 100644 --- a/plugin_sa/game_sa/CTaskComplexUseMobilePhone.h +++ b/plugin_sa/game_sa/CTaskComplexUseMobilePhone.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskComplex.h" #include "CTaskTimer.h" diff --git a/plugin_sa/game_sa/CTaskSimpleCarSetPedInAsPassenger.cpp b/plugin_sa/game_sa/CTaskSimpleCarSetPedInAsPassenger.cpp index 0722b94ff..c738cabd3 100644 --- a/plugin_sa/game_sa/CTaskSimpleCarSetPedInAsPassenger.cpp +++ b/plugin_sa/game_sa/CTaskSimpleCarSetPedInAsPassenger.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CTaskSimpleCarSetPedInAsPassenger.h" diff --git a/plugin_sa/game_sa/CTaskSimpleCarSetPedOut.cpp b/plugin_sa/game_sa/CTaskSimpleCarSetPedOut.cpp index a8f0f3aba..6afc73829 100644 --- a/plugin_sa/game_sa/CTaskSimpleCarSetPedOut.cpp +++ b/plugin_sa/game_sa/CTaskSimpleCarSetPedOut.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CTaskSimpleCarSetPedOut.h" diff --git a/plugin_sa/game_sa/CTaskSimpleChoking.cpp b/plugin_sa/game_sa/CTaskSimpleChoking.cpp index 073688465..31efb8201 100644 --- a/plugin_sa/game_sa/CTaskSimpleChoking.cpp +++ b/plugin_sa/game_sa/CTaskSimpleChoking.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CTaskSimpleChoking.h" diff --git a/plugin_sa/game_sa/CTaskSimpleChoking.h b/plugin_sa/game_sa/CTaskSimpleChoking.h index c5d499c07..433653199 100644 --- a/plugin_sa/game_sa/CTaskSimpleChoking.h +++ b/plugin_sa/game_sa/CTaskSimpleChoking.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskSimple.h" #include "CAnimBlendAssociation.h" diff --git a/plugin_sa/game_sa/CTaskSimpleFacial.cpp b/plugin_sa/game_sa/CTaskSimpleFacial.cpp index 906b7416f..6a5d040ea 100644 --- a/plugin_sa/game_sa/CTaskSimpleFacial.cpp +++ b/plugin_sa/game_sa/CTaskSimpleFacial.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CTaskSimpleFacial.h" diff --git a/plugin_sa/game_sa/CTaskSimpleFacial.h b/plugin_sa/game_sa/CTaskSimpleFacial.h index 883878f20..8aef4d44d 100644 --- a/plugin_sa/game_sa/CTaskSimpleFacial.h +++ b/plugin_sa/game_sa/CTaskSimpleFacial.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskSimple.h" #include "CTaskTimer.h" diff --git a/plugin_sa/game_sa/CTaskSimpleGangDriveBy.cpp b/plugin_sa/game_sa/CTaskSimpleGangDriveBy.cpp index 8176f4b55..0f78b0917 100644 --- a/plugin_sa/game_sa/CTaskSimpleGangDriveBy.cpp +++ b/plugin_sa/game_sa/CTaskSimpleGangDriveBy.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CTaskSimpleGangDriveBy.h" diff --git a/plugin_sa/game_sa/CTaskSimpleGangDriveBy.h b/plugin_sa/game_sa/CTaskSimpleGangDriveBy.h index cc79fc615..864f76147 100644 --- a/plugin_sa/game_sa/CTaskSimpleGangDriveBy.h +++ b/plugin_sa/game_sa/CTaskSimpleGangDriveBy.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskSimple.h" #include "CAnimBlendAssociation.h" diff --git a/plugin_sa/game_sa/CTaskSimpleIKChain.cpp b/plugin_sa/game_sa/CTaskSimpleIKChain.cpp index abf291252..b3de1bebc 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) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ - #include "CTaskSimpleIKChain.h" CTaskSimpleIKChain::CTaskSimpleIKChain(char* _IGNORED_ idString , int effectorBoneTag, RwV3d effectorVec, int pivotBoneTag, diff --git a/plugin_sa/game_sa/CTaskSimpleIKChain.h b/plugin_sa/game_sa/CTaskSimpleIKChain.h index bb8cdb9b7..9858912f4 100644 --- a/plugin_sa/game_sa/CTaskSimpleIKChain.h +++ b/plugin_sa/game_sa/CTaskSimpleIKChain.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskSimple.h" #include "CAnimBlendAssociation.h" diff --git a/plugin_sa/game_sa/CTaskSimpleIKLookAt.cpp b/plugin_sa/game_sa/CTaskSimpleIKLookAt.cpp index 86def4b5e..dfe73418e 100644 --- a/plugin_sa/game_sa/CTaskSimpleIKLookAt.cpp +++ b/plugin_sa/game_sa/CTaskSimpleIKLookAt.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CTaskSimpleIKLookAt.h" diff --git a/plugin_sa/game_sa/CTaskSimpleIKLookAt.h b/plugin_sa/game_sa/CTaskSimpleIKLookAt.h index 26bcb1c89..5b47310f1 100644 --- a/plugin_sa/game_sa/CTaskSimpleIKLookAt.h +++ b/plugin_sa/game_sa/CTaskSimpleIKLookAt.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskSimple.h" #include "CAnimBlendAssociation.h" diff --git a/plugin_sa/game_sa/CTaskSimpleIKManager.cpp b/plugin_sa/game_sa/CTaskSimpleIKManager.cpp index 38e3d9d59..4d8ce12d9 100644 --- a/plugin_sa/game_sa/CTaskSimpleIKManager.cpp +++ b/plugin_sa/game_sa/CTaskSimpleIKManager.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CTaskSimpleIKManager.h" diff --git a/plugin_sa/game_sa/CTaskSimpleIKManager.h b/plugin_sa/game_sa/CTaskSimpleIKManager.h index 114c4b807..de2bcef45 100644 --- a/plugin_sa/game_sa/CTaskSimpleIKManager.h +++ b/plugin_sa/game_sa/CTaskSimpleIKManager.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskSimpleIKChain.h" diff --git a/plugin_sa/game_sa/CTaskSimplePlayerOnFoot.cpp b/plugin_sa/game_sa/CTaskSimplePlayerOnFoot.cpp index 0ce0c3563..28e170fcb 100644 --- a/plugin_sa/game_sa/CTaskSimplePlayerOnFoot.cpp +++ b/plugin_sa/game_sa/CTaskSimplePlayerOnFoot.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CTaskSimplePlayerOnFoot.h" diff --git a/plugin_sa/game_sa/CTaskSimplePlayerOnFoot.h b/plugin_sa/game_sa/CTaskSimplePlayerOnFoot.h index d1785aac5..7632b6e5f 100644 --- a/plugin_sa/game_sa/CTaskSimplePlayerOnFoot.h +++ b/plugin_sa/game_sa/CTaskSimplePlayerOnFoot.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskSimple.h" #include "CAnimBlendAssociation.h" diff --git a/plugin_sa/game_sa/CTaskSimpleRunAnim.cpp b/plugin_sa/game_sa/CTaskSimpleRunAnim.cpp index 2808ca956..d90e8aed0 100644 --- a/plugin_sa/game_sa/CTaskSimpleRunAnim.cpp +++ b/plugin_sa/game_sa/CTaskSimpleRunAnim.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CTaskSimpleRunAnim.h" diff --git a/plugin_sa/game_sa/CTaskSimpleRunAnim.h b/plugin_sa/game_sa/CTaskSimpleRunAnim.h index c10ba2ea4..b96295f47 100644 --- a/plugin_sa/game_sa/CTaskSimpleRunAnim.h +++ b/plugin_sa/game_sa/CTaskSimpleRunAnim.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskSimpleAnim.h" #include "CAnimBlendAssociation.h" diff --git a/plugin_sa/game_sa/CTaskSimpleRunNamedAnim.cpp b/plugin_sa/game_sa/CTaskSimpleRunNamedAnim.cpp index 3fcc2651d..e80000b98 100644 --- a/plugin_sa/game_sa/CTaskSimpleRunNamedAnim.cpp +++ b/plugin_sa/game_sa/CTaskSimpleRunNamedAnim.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CTaskSimpleRunNamedAnim.h" diff --git a/plugin_sa/game_sa/CTaskSimpleStealthKill.cpp b/plugin_sa/game_sa/CTaskSimpleStealthKill.cpp index 3bc19dd3b..da916e87f 100644 --- a/plugin_sa/game_sa/CTaskSimpleStealthKill.cpp +++ b/plugin_sa/game_sa/CTaskSimpleStealthKill.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CTaskSimpleStealthKill.h" diff --git a/plugin_sa/game_sa/CTaskSimpleStealthKill.h b/plugin_sa/game_sa/CTaskSimpleStealthKill.h index 66ef4c887..cbb95357a 100644 --- a/plugin_sa/game_sa/CTaskSimpleStealthKill.h +++ b/plugin_sa/game_sa/CTaskSimpleStealthKill.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskSimple.h" #include "CPed.h" diff --git a/plugin_sa/game_sa/CTaskSimpleTriggerLookAt.cpp b/plugin_sa/game_sa/CTaskSimpleTriggerLookAt.cpp index 4129e5149..a2597c0fa 100644 --- a/plugin_sa/game_sa/CTaskSimpleTriggerLookAt.cpp +++ b/plugin_sa/game_sa/CTaskSimpleTriggerLookAt.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CTaskSimpleTriggerLookAt.h" diff --git a/plugin_sa/game_sa/CTaskSimpleTriggerLookAt.h b/plugin_sa/game_sa/CTaskSimpleTriggerLookAt.h index fa5c6a662..3bda88d0b 100644 --- a/plugin_sa/game_sa/CTaskSimpleTriggerLookAt.h +++ b/plugin_sa/game_sa/CTaskSimpleTriggerLookAt.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskSimple.h" #include "CAnimBlendAssociation.h" diff --git a/plugin_sa/game_sa/CTaskSimpleUseGun.h b/plugin_sa/game_sa/CTaskSimpleUseGun.h index 0c5f144de..6f64910b6 100644 --- a/plugin_sa/game_sa/CTaskSimpleUseGun.h +++ b/plugin_sa/game_sa/CTaskSimpleUseGun.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! */ #pragma once - #include "PluginBase.h" #include "CTaskSimple.h" #include "CVector.h" diff --git a/plugin_sa/game_sa/CTheCarGenerators.cpp b/plugin_sa/game_sa/CTheCarGenerators.cpp index 17dff88bf..a3b944196 100644 --- a/plugin_sa/game_sa/CTheCarGenerators.cpp +++ b/plugin_sa/game_sa/CTheCarGenerators.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CTheCarGenerators.h" diff --git a/plugin_sa/game_sa/CTheCarGenerators.h b/plugin_sa/game_sa/CTheCarGenerators.h index 2b90560e8..1b5268592 100644 --- a/plugin_sa/game_sa/CTheCarGenerators.h +++ b/plugin_sa/game_sa/CTheCarGenerators.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CSpecialPlateHandler.h" #include "CCarGenerator.h" diff --git a/plugin_sa/game_sa/CTheScripts.cpp b/plugin_sa/game_sa/CTheScripts.cpp index e07195082..fe9095489 100644 --- a/plugin_sa/game_sa/CTheScripts.cpp +++ b/plugin_sa/game_sa/CTheScripts.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CTheScripts.h" diff --git a/plugin_sa/game_sa/CTimeCycle.h b/plugin_sa/game_sa/CTimeCycle.h index d9a31b03d..f0d284051 100644 --- a/plugin_sa/game_sa/CTimeCycle.h +++ b/plugin_sa/game_sa/CTimeCycle.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 "CColourSet.h" #include "CBox.h" diff --git a/plugin_sa/game_sa/CTimeCycleBox.h b/plugin_sa/game_sa/CTimeCycleBox.h index 4513f0c71..b31dec317 100644 --- a/plugin_sa/game_sa/CTimeCycleBox.h +++ b/plugin_sa/game_sa/CTimeCycleBox.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CBox.h" diff --git a/plugin_sa/game_sa/CWorld.cpp b/plugin_sa/game_sa/CWorld.cpp index 9fd50947f..9921edef7 100644 --- a/plugin_sa/game_sa/CWorld.cpp +++ b/plugin_sa/game_sa/CWorld.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 "CWorld.h" diff --git a/plugin_sa/game_sa/CWorld.h b/plugin_sa/game_sa/CWorld.h index 52dda8e44..e9bb08b22 100644 --- a/plugin_sa/game_sa/CWorld.h +++ b/plugin_sa/game_sa/CWorld.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 #define SECTOR_SIZE_X (50.0f) diff --git a/plugin_sa/game_sa/CZoneInfo.h b/plugin_sa/game_sa/CZoneInfo.h index eb728c3ea..21d7def6c 100644 --- a/plugin_sa/game_sa/CZoneInfo.h +++ b/plugin_sa/game_sa/CZoneInfo.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/JPegCompress.cpp b/plugin_sa/game_sa/JPegCompress.cpp index ea6d347cb..61d163658 100644 --- a/plugin_sa/game_sa/JPegCompress.cpp +++ b/plugin_sa/game_sa/JPegCompress.cpp @@ -1,3 +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! +*/ # include "JPegCompress.h" # include "CScene.h" # include diff --git a/plugin_sa/game_sa/ListItem_c.cpp b/plugin_sa/game_sa/ListItem_c.cpp index 4401b1118..dda06a679 100644 --- a/plugin_sa/game_sa/ListItem_c.cpp +++ b/plugin_sa/game_sa/ListItem_c.cpp @@ -1,3 +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! +*/ #include "ListItem_c.h" // US-1.00 @ 0x004A8DB0 diff --git a/plugin_sa/game_sa/List_c.cpp b/plugin_sa/game_sa/List_c.cpp index b64700027..0724ccd95 100644 --- a/plugin_sa/game_sa/List_c.cpp +++ b/plugin_sa/game_sa/List_c.cpp @@ -1,3 +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! +*/ # include "List_c.h" # include diff --git a/plugin_sa/game_sa/SurfaceInfos_c.h b/plugin_sa/game_sa/SurfaceInfos_c.h index 08449b09d..c35ec1c60 100644 --- a/plugin_sa/game_sa/SurfaceInfos_c.h +++ b/plugin_sa/game_sa/SurfaceInfos_c.h @@ -1,4 +1,4 @@ -/* +/* Plugin-SDK (Grand Theft Auto San Andreas) header file Authors: GTA Community. See more here https://github.com/DK22Pac/plugin-sdk diff --git a/plugin_sa/game_sa/tHandlingData.h b/plugin_sa/game_sa/tHandlingData.h index f5366321f..5cfb96b60 100644 --- a/plugin_sa/game_sa/tHandlingData.h +++ b/plugin_sa/game_sa/tHandlingData.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "cTransmission.h" #include "CVector.h" diff --git a/plugin_vc/game_vc/CAutomobile.cpp b/plugin_vc/game_vc/CAutomobile.cpp index 785c23300..a719a0643 100644 --- a/plugin_vc/game_vc/CAutomobile.cpp +++ b/plugin_vc/game_vc/CAutomobile.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CAutomobile.h" diff --git a/plugin_vc/game_vc/CAutomobile.h b/plugin_vc/game_vc/CAutomobile.h index 1a427f1f9..7fd8dd559 100644 --- a/plugin_vc/game_vc/CAutomobile.h +++ b/plugin_vc/game_vc/CAutomobile.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVehicle.h" #include "CDoor.h" diff --git a/plugin_vc/game_vc/CBike.cpp b/plugin_vc/game_vc/CBike.cpp index 390120e2c..e5de63690 100644 --- a/plugin_vc/game_vc/CBike.cpp +++ b/plugin_vc/game_vc/CBike.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CBike.h" diff --git a/plugin_vc/game_vc/CBike.h b/plugin_vc/game_vc/CBike.h index 7219e31ea..d367fc803 100644 --- a/plugin_vc/game_vc/CBike.h +++ b/plugin_vc/game_vc/CBike.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once #include "PluginBase.h" diff --git a/plugin_vc/game_vc/CBoat.cpp b/plugin_vc/game_vc/CBoat.cpp index 29c7c9e9e..a4bdb8022 100644 --- a/plugin_vc/game_vc/CBoat.cpp +++ b/plugin_vc/game_vc/CBoat.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CBoat.h" diff --git a/plugin_vc/game_vc/CBoat.h b/plugin_vc/game_vc/CBoat.h index ec40687b0..ee649011f 100644 --- a/plugin_vc/game_vc/CBoat.h +++ b/plugin_vc/game_vc/CBoat.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once #include "PluginBase.h" diff --git a/plugin_vc/game_vc/CBox.cpp b/plugin_vc/game_vc/CBox.cpp index 9b8f4370f..6f2173e56 100644 --- a/plugin_vc/game_vc/CBox.cpp +++ b/plugin_vc/game_vc/CBox.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CBox.h" diff --git a/plugin_vc/game_vc/CBox.h b/plugin_vc/game_vc/CBox.h index 4b38b09d2..21afe810e 100644 --- a/plugin_vc/game_vc/CBox.h +++ b/plugin_vc/game_vc/CBox.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" diff --git a/plugin_vc/game_vc/CCarCtrl.cpp b/plugin_vc/game_vc/CCarCtrl.cpp index 3be9a8f9b..f64fdcb3b 100644 --- a/plugin_vc/game_vc/CCarCtrl.cpp +++ b/plugin_vc/game_vc/CCarCtrl.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CCarCtrl.h" diff --git a/plugin_vc/game_vc/CCarCtrl.h b/plugin_vc/game_vc/CCarCtrl.h index 25e2d4df0..dcff13370 100644 --- a/plugin_vc/game_vc/CCarCtrl.h +++ b/plugin_vc/game_vc/CCarCtrl.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once #include "PluginBase.h" diff --git a/plugin_vc/game_vc/CCarGenerator.cpp b/plugin_vc/game_vc/CCarGenerator.cpp index 0a4194ad2..5365d15da 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) 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_vc/game_vc/CCarGenerator.h b/plugin_vc/game_vc/CCarGenerator.h index 99f2b2a85..467c5478d 100644 --- a/plugin_vc/game_vc/CCarGenerator.h +++ b/plugin_vc/game_vc/CCarGenerator.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once #include "PluginBase.h" diff --git a/plugin_vc/game_vc/CCivilianPed.cpp b/plugin_vc/game_vc/CCivilianPed.cpp index 208b6dcee..aa55f65f5 100644 --- a/plugin_vc/game_vc/CCivilianPed.cpp +++ b/plugin_vc/game_vc/CCivilianPed.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CCivilianPed.h" diff --git a/plugin_vc/game_vc/CCivilianPed.h b/plugin_vc/game_vc/CCivilianPed.h index c608e1704..d44ffb03c 100644 --- a/plugin_vc/game_vc/CCivilianPed.h +++ b/plugin_vc/game_vc/CCivilianPed.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CPed.h" #include "ePedType.h" diff --git a/plugin_vc/game_vc/CClouds.cpp b/plugin_vc/game_vc/CClouds.cpp index 1f57e750a..9e51072d7 100644 --- a/plugin_vc/game_vc/CClouds.cpp +++ b/plugin_vc/game_vc/CClouds.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CClouds.h" diff --git a/plugin_vc/game_vc/CClouds.h b/plugin_vc/game_vc/CClouds.h index ca8eea253..d2be54deb 100644 --- a/plugin_vc/game_vc/CClouds.h +++ b/plugin_vc/game_vc/CClouds.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once #include "PluginBase.h" diff --git a/plugin_vc/game_vc/CClumpModelInfo.cpp b/plugin_vc/game_vc/CClumpModelInfo.cpp index b179a22ca..214f3051f 100644 --- a/plugin_vc/game_vc/CClumpModelInfo.cpp +++ b/plugin_vc/game_vc/CClumpModelInfo.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CClumpModelInfo.h" diff --git a/plugin_vc/game_vc/CClumpModelInfo.h b/plugin_vc/game_vc/CClumpModelInfo.h index 430ba35da..7394f2a8d 100644 --- a/plugin_vc/game_vc/CClumpModelInfo.h +++ b/plugin_vc/game_vc/CClumpModelInfo.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CBaseModelInfo.h" #include "RenderWare.h" diff --git a/plugin_vc/game_vc/CColBox.cpp b/plugin_vc/game_vc/CColBox.cpp index c6a2d85b2..7ae100a80 100644 --- a/plugin_vc/game_vc/CColBox.cpp +++ b/plugin_vc/game_vc/CColBox.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CColBox.h" diff --git a/plugin_vc/game_vc/CColBox.h b/plugin_vc/game_vc/CColBox.h index 4d62d9c23..67cc54a88 100644 --- a/plugin_vc/game_vc/CColBox.h +++ b/plugin_vc/game_vc/CColBox.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CBox.h" diff --git a/plugin_vc/game_vc/CColLine.cpp b/plugin_vc/game_vc/CColLine.cpp index 97d7b67ef..67e6c9197 100644 --- a/plugin_vc/game_vc/CColLine.cpp +++ b/plugin_vc/game_vc/CColLine.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CColLine.h" diff --git a/plugin_vc/game_vc/CColLine.h b/plugin_vc/game_vc/CColLine.h index 1cde37741..2f02ab8bd 100644 --- a/plugin_vc/game_vc/CColLine.h +++ b/plugin_vc/game_vc/CColLine.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" diff --git a/plugin_vc/game_vc/CColModel.cpp b/plugin_vc/game_vc/CColModel.cpp index 7e0e8e287..a5f63b9f9 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) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CColModel.h" diff --git a/plugin_vc/game_vc/CColModel.h b/plugin_vc/game_vc/CColModel.h index 17b380211..bc8d65b30 100644 --- a/plugin_vc/game_vc/CColModel.h +++ b/plugin_vc/game_vc/CColModel.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_vc/game_vc/CColSphere.cpp b/plugin_vc/game_vc/CColSphere.cpp index 53652200b..a2e3fc9ca 100644 --- a/plugin_vc/game_vc/CColSphere.cpp +++ b/plugin_vc/game_vc/CColSphere.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CColSphere.h" diff --git a/plugin_vc/game_vc/CColSphere.h b/plugin_vc/game_vc/CColSphere.h index 56ec54e65..59bad58d8 100644 --- a/plugin_vc/game_vc/CColSphere.h +++ b/plugin_vc/game_vc/CColSphere.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CSphere.h" diff --git a/plugin_vc/game_vc/CCopPed.cpp b/plugin_vc/game_vc/CCopPed.cpp index 9e48476d4..c990b3bcd 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) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CCopPed.h" diff --git a/plugin_vc/game_vc/CCopPed.h b/plugin_vc/game_vc/CCopPed.h index 77b43ffbe..da4249282 100644 --- a/plugin_vc/game_vc/CCopPed.h +++ b/plugin_vc/game_vc/CCopPed.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CPed.h" #include "eCopType.h" diff --git a/plugin_vc/game_vc/CCoronas.cpp b/plugin_vc/game_vc/CCoronas.cpp index 1ebec14b0..450c704ba 100644 --- a/plugin_vc/game_vc/CCoronas.cpp +++ b/plugin_vc/game_vc/CCoronas.cpp @@ -1,5 +1,5 @@ /* - Plugin-SDK (Grand Theft Auto 3) source file + 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! diff --git a/plugin_vc/game_vc/CCoronas.h b/plugin_vc/game_vc/CCoronas.h index 3f3150e58..5850305d7 100644 --- a/plugin_vc/game_vc/CCoronas.h +++ b/plugin_vc/game_vc/CCoronas.h @@ -1,11 +1,10 @@ /* - Plugin-SDK (Grand Theft Auto 3) header file + Plugin-SDK (Grand Theft Auto Vice 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/CDamageManager.cpp b/plugin_vc/game_vc/CDamageManager.cpp index b33765027..6b9e8c9af 100644 --- a/plugin_vc/game_vc/CDamageManager.cpp +++ b/plugin_vc/game_vc/CDamageManager.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CDamageManager.h" diff --git a/plugin_vc/game_vc/CDamageManager.h b/plugin_vc/game_vc/CDamageManager.h index 0b8c882fd..c0150bbd7 100644 --- a/plugin_vc/game_vc/CDamageManager.h +++ b/plugin_vc/game_vc/CDamageManager.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once #include "PluginBase.h" diff --git a/plugin_vc/game_vc/CDarkel.cpp b/plugin_vc/game_vc/CDarkel.cpp index f92d0b62a..758ae5546 100644 --- a/plugin_vc/game_vc/CDarkel.cpp +++ b/plugin_vc/game_vc/CDarkel.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CDarkel.h" diff --git a/plugin_vc/game_vc/CDarkel.h b/plugin_vc/game_vc/CDarkel.h index f3e1652b2..cdb990fa7 100644 --- a/plugin_vc/game_vc/CDarkel.h +++ b/plugin_vc/game_vc/CDarkel.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once #include "PluginBase.h" diff --git a/plugin_vc/game_vc/CDoor.cpp b/plugin_vc/game_vc/CDoor.cpp index 60b9a9edd..92d3bac2f 100644 --- a/plugin_vc/game_vc/CDoor.cpp +++ b/plugin_vc/game_vc/CDoor.cpp @@ -1,7 +1,7 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CDoor.h" \ No newline at end of file diff --git a/plugin_vc/game_vc/CDoor.h b/plugin_vc/game_vc/CDoor.h index b55c01c4c..b7211d0f4 100644 --- a/plugin_vc/game_vc/CDoor.h +++ b/plugin_vc/game_vc/CDoor.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" diff --git a/plugin_vc/game_vc/CDraw.cpp b/plugin_vc/game_vc/CDraw.cpp index cf9889742..c097ed577 100644 --- a/plugin_vc/game_vc/CDraw.cpp +++ b/plugin_vc/game_vc/CDraw.cpp @@ -1,10 +1,9 @@ /* - Plugin-SDK (Grand Theft Auto Vice City) header file + 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 "CDraw.h" // variables diff --git a/plugin_vc/game_vc/CEmergencyPed.cpp b/plugin_vc/game_vc/CEmergencyPed.cpp index bca4fce8b..2f3e285bd 100644 --- a/plugin_vc/game_vc/CEmergencyPed.cpp +++ b/plugin_vc/game_vc/CEmergencyPed.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CEmergencyPed.h" diff --git a/plugin_vc/game_vc/CEmergencyPed.h b/plugin_vc/game_vc/CEmergencyPed.h index 8da2951e9..7e7d491d1 100644 --- a/plugin_vc/game_vc/CEmergencyPed.h +++ b/plugin_vc/game_vc/CEmergencyPed.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CPed.h" diff --git a/plugin_vc/game_vc/CEntity.cpp b/plugin_vc/game_vc/CEntity.cpp index b78c5151b..87a5e5930 100644 --- a/plugin_vc/game_vc/CEntity.cpp +++ b/plugin_vc/game_vc/CEntity.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CEntity.h" diff --git a/plugin_vc/game_vc/CEscalators.cpp b/plugin_vc/game_vc/CEscalators.cpp index ce6a6fc61..c468a52f1 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) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CEscalators.h" diff --git a/plugin_vc/game_vc/CEscalators.h b/plugin_vc/game_vc/CEscalators.h index 560e8e0bd..9647b5158 100644 --- a/plugin_vc/game_vc/CEscalators.h +++ b/plugin_vc/game_vc/CEscalators.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once #include "PluginBase.h" diff --git a/plugin_vc/game_vc/CGangs.cpp b/plugin_vc/game_vc/CGangs.cpp index 378825da2..2c488c5cd 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) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CGangs.h" diff --git a/plugin_vc/game_vc/CGangs.h b/plugin_vc/game_vc/CGangs.h index bc5aacecb..eb2d52cb0 100644 --- a/plugin_vc/game_vc/CGangs.h +++ b/plugin_vc/game_vc/CGangs.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CPed.h" #include "CObject.h" diff --git a/plugin_vc/game_vc/CGarage.h b/plugin_vc/game_vc/CGarage.h index 8aabf39c5..08504da97 100644 --- a/plugin_vc/game_vc/CGarage.h +++ b/plugin_vc/game_vc/CGarage.h @@ -1,3 +1,9 @@ +/* + Plugin-SDK (Grand Theft Auto Vice 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/CHeli.cpp b/plugin_vc/game_vc/CHeli.cpp index 1a752e5e1..657c4d196 100644 --- a/plugin_vc/game_vc/CHeli.cpp +++ b/plugin_vc/game_vc/CHeli.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CHeli.h" diff --git a/plugin_vc/game_vc/CHeli.h b/plugin_vc/game_vc/CHeli.h index 3fbc8215c..72bf40efe 100644 --- a/plugin_vc/game_vc/CHeli.h +++ b/plugin_vc/game_vc/CHeli.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVehicle.h" #include "CObject.h" diff --git a/plugin_vc/game_vc/CIniFile.cpp b/plugin_vc/game_vc/CIniFile.cpp index caca2ab62..640da8751 100644 --- a/plugin_vc/game_vc/CIniFile.cpp +++ b/plugin_vc/game_vc/CIniFile.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CIniFile.h" diff --git a/plugin_vc/game_vc/CIniFile.h b/plugin_vc/game_vc/CIniFile.h index 7e5845b62..f1792f7de 100644 --- a/plugin_vc/game_vc/CIniFile.h +++ b/plugin_vc/game_vc/CIniFile.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" class CIniFile { diff --git a/plugin_vc/game_vc/CMatrix.h b/plugin_vc/game_vc/CMatrix.h index 615a14289..f8192437d 100644 --- a/plugin_vc/game_vc/CMatrix.h +++ b/plugin_vc/game_vc/CMatrix.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_vc/game_vc/CModelInfo.cpp b/plugin_vc/game_vc/CModelInfo.cpp index b6e6f442c..4868bfec9 100644 --- a/plugin_vc/game_vc/CModelInfo.cpp +++ b/plugin_vc/game_vc/CModelInfo.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CModelInfo.h" diff --git a/plugin_vc/game_vc/CMovie.cpp b/plugin_vc/game_vc/CMovie.cpp index 8348488ae..760025ce5 100644 --- a/plugin_vc/game_vc/CMovie.cpp +++ b/plugin_vc/game_vc/CMovie.cpp @@ -1,5 +1,5 @@ /* - Plugin-SDK (Grand Theft Auto 3) source file + 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! diff --git a/plugin_vc/game_vc/COnscreenTimer.cpp b/plugin_vc/game_vc/COnscreenTimer.cpp index e1bf6c1ea..17b6ff338 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) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "COnscreenTimer.h" diff --git a/plugin_vc/game_vc/COnscreenTimer.h b/plugin_vc/game_vc/COnscreenTimer.h index 07f9f3bc0..64c7b47f4 100644 --- a/plugin_vc/game_vc/COnscreenTimer.h +++ b/plugin_vc/game_vc/COnscreenTimer.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once #include "PluginBase.h" diff --git a/plugin_vc/game_vc/CPedModelInfo.cpp b/plugin_vc/game_vc/CPedModelInfo.cpp index 780c8c774..716aed422 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) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CPedModelInfo.h" diff --git a/plugin_vc/game_vc/CPedModelInfo.h b/plugin_vc/game_vc/CPedModelInfo.h index 8b63f4b3f..2fb975e3a 100644 --- a/plugin_vc/game_vc/CPedModelInfo.h +++ b/plugin_vc/game_vc/CPedModelInfo.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once #include "PluginBase.h" diff --git a/plugin_vc/game_vc/CPedPlacement.cpp b/plugin_vc/game_vc/CPedPlacement.cpp index 7baee7cfe..ca19f1980 100644 --- a/plugin_vc/game_vc/CPedPlacement.cpp +++ b/plugin_vc/game_vc/CPedPlacement.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CPedPlacement.h" diff --git a/plugin_vc/game_vc/CPedPlacement.h b/plugin_vc/game_vc/CPedPlacement.h index 6fe29c98e..cabb73d7c 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) header 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.cpp b/plugin_vc/game_vc/CPedStats.cpp index 35c415ca8..35646cc3c 100644 --- a/plugin_vc/game_vc/CPedStats.cpp +++ b/plugin_vc/game_vc/CPedStats.cpp @@ -1,5 +1,5 @@ /* - Plugin-SDK (Grand Theft Auto Vice City) header file + 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! diff --git a/plugin_vc/game_vc/CPedType.cpp b/plugin_vc/game_vc/CPedType.cpp index 96329ed47..145ff60ae 100644 --- a/plugin_vc/game_vc/CPedType.cpp +++ b/plugin_vc/game_vc/CPedType.cpp @@ -1,5 +1,5 @@ /* - Plugin-SDK (Grand Theft Auto Vice City) header file + 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! diff --git a/plugin_vc/game_vc/CPickups.cpp b/plugin_vc/game_vc/CPickups.cpp index bc4fb8e38..0816ae3c5 100644 --- a/plugin_vc/game_vc/CPickups.cpp +++ b/plugin_vc/game_vc/CPickups.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CPickups.h" diff --git a/plugin_vc/game_vc/CPickups.h b/plugin_vc/game_vc/CPickups.h index a1f682c5f..9871a4539 100644 --- a/plugin_vc/game_vc/CPickups.h +++ b/plugin_vc/game_vc/CPickups.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once #include "PluginBase.h" diff --git a/plugin_vc/game_vc/CPlane.cpp b/plugin_vc/game_vc/CPlane.cpp index 3b691acd8..fb8ab78b9 100644 --- a/plugin_vc/game_vc/CPlane.cpp +++ b/plugin_vc/game_vc/CPlane.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CPlane.h" diff --git a/plugin_vc/game_vc/CPlane.h b/plugin_vc/game_vc/CPlane.h index b8c07aec3..04b6eed84 100644 --- a/plugin_vc/game_vc/CPlane.h +++ b/plugin_vc/game_vc/CPlane.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once #include "PluginBase.h" diff --git a/plugin_vc/game_vc/CPlayerInfo.cpp b/plugin_vc/game_vc/CPlayerInfo.cpp index 967e6fa7b..3fb12de84 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) 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_vc/game_vc/CPlayerInfo.h b/plugin_vc/game_vc/CPlayerInfo.h index 711ebc374..17b889760 100644 --- a/plugin_vc/game_vc/CPlayerInfo.h +++ b/plugin_vc/game_vc/CPlayerInfo.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once #include "PluginBase.h" diff --git a/plugin_vc/game_vc/CPlayerPed.cpp b/plugin_vc/game_vc/CPlayerPed.cpp index 068dae9f8..b165a3a00 100644 --- a/plugin_vc/game_vc/CPlayerPed.cpp +++ b/plugin_vc/game_vc/CPlayerPed.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CPlayerPed.h" diff --git a/plugin_vc/game_vc/CPlayerPed.h b/plugin_vc/game_vc/CPlayerPed.h index 798e7f365..ff2d37ea3 100644 --- a/plugin_vc/game_vc/CPlayerPed.h +++ b/plugin_vc/game_vc/CPlayerPed.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CPed.h" #include "eWeaponType.h" diff --git a/plugin_vc/game_vc/CPopulation.cpp b/plugin_vc/game_vc/CPopulation.cpp index 9388ee0a4..1e9bdaa9d 100644 --- a/plugin_vc/game_vc/CPopulation.cpp +++ b/plugin_vc/game_vc/CPopulation.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CPopulation.h" diff --git a/plugin_vc/game_vc/CPopulation.h b/plugin_vc/game_vc/CPopulation.h index f38f1bdaa..7c0cea8a9 100644 --- a/plugin_vc/game_vc/CPopulation.h +++ b/plugin_vc/game_vc/CPopulation.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once #include "PluginBase.h" diff --git a/plugin_vc/game_vc/CProjectile.cpp b/plugin_vc/game_vc/CProjectile.cpp index 0db3ee15b..526fc8bdc 100644 --- a/plugin_vc/game_vc/CProjectile.cpp +++ b/plugin_vc/game_vc/CProjectile.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CProjectile.h" diff --git a/plugin_vc/game_vc/CProjectile.h b/plugin_vc/game_vc/CProjectile.h index b4090c606..ec28635a9 100644 --- a/plugin_vc/game_vc/CProjectile.h +++ b/plugin_vc/game_vc/CProjectile.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CObject.h" diff --git a/plugin_vc/game_vc/CProjectileInfo.cpp b/plugin_vc/game_vc/CProjectileInfo.cpp index c193680a1..caffbaffa 100644 --- a/plugin_vc/game_vc/CProjectileInfo.cpp +++ b/plugin_vc/game_vc/CProjectileInfo.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CProjectileInfo.h" diff --git a/plugin_vc/game_vc/CProjectileInfo.h b/plugin_vc/game_vc/CProjectileInfo.h index 093d804e2..155c5ba63 100644 --- a/plugin_vc/game_vc/CProjectileInfo.h +++ b/plugin_vc/game_vc/CProjectileInfo.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CObject.h" #include "eWeaponType.h" diff --git a/plugin_vc/game_vc/CPtrNode.h b/plugin_vc/game_vc/CPtrNode.h index d059bdb43..5e59c223c 100644 --- a/plugin_vc/game_vc/CPtrNode.h +++ b/plugin_vc/game_vc/CPtrNode.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 CPtrNode { diff --git a/plugin_vc/game_vc/CQuaternion.h b/plugin_vc/game_vc/CQuaternion.h index ce44dc658..08b16ed95 100644 --- a/plugin_vc/game_vc/CQuaternion.h +++ b/plugin_vc/game_vc/CQuaternion.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once #include "PluginBase.h" diff --git a/plugin_vc/game_vc/CRenderer.cpp b/plugin_vc/game_vc/CRenderer.cpp index 950699540..ab3704913 100644 --- a/plugin_vc/game_vc/CRenderer.cpp +++ b/plugin_vc/game_vc/CRenderer.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 "CRenderer.h" diff --git a/plugin_vc/game_vc/CRenderer.h b/plugin_vc/game_vc/CRenderer.h index 58d272925..052707cab 100644 --- a/plugin_vc/game_vc/CRenderer.h +++ b/plugin_vc/game_vc/CRenderer.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/CReplay.cpp b/plugin_vc/game_vc/CReplay.cpp index f71fc27ed..a5595822b 100644 --- a/plugin_vc/game_vc/CReplay.cpp +++ b/plugin_vc/game_vc/CReplay.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 "CReplay.h" diff --git a/plugin_vc/game_vc/CReplay.h b/plugin_vc/game_vc/CReplay.h index 80db27acc..106b4958a 100644 --- a/plugin_vc/game_vc/CReplay.h +++ b/plugin_vc/game_vc/CReplay.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/CRunningScript.cpp b/plugin_vc/game_vc/CRunningScript.cpp index 8f5376451..54e31f1da 100644 --- a/plugin_vc/game_vc/CRunningScript.cpp +++ b/plugin_vc/game_vc/CRunningScript.cpp @@ -1,5 +1,5 @@ /* - Plugin-SDK (Grand Theft Auto Vice City) header file + 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! diff --git a/plugin_vc/game_vc/CSphere.cpp b/plugin_vc/game_vc/CSphere.cpp index 0c5eaf35f..670b49c86 100644 --- a/plugin_vc/game_vc/CSphere.cpp +++ b/plugin_vc/game_vc/CSphere.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CSphere.h" diff --git a/plugin_vc/game_vc/CSphere.h b/plugin_vc/game_vc/CSphere.h index 7d438f698..5a977e4ed 100644 --- a/plugin_vc/game_vc/CSphere.h +++ b/plugin_vc/game_vc/CSphere.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" diff --git a/plugin_vc/game_vc/CStats.cpp b/plugin_vc/game_vc/CStats.cpp index cc7e4fce3..f285bce95 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) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CStats.h" diff --git a/plugin_vc/game_vc/CStats.h b/plugin_vc/game_vc/CStats.h index 93e5345f5..8769b6a6f 100644 --- a/plugin_vc/game_vc/CStats.h +++ b/plugin_vc/game_vc/CStats.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_vc/game_vc/CStinger.cpp b/plugin_vc/game_vc/CStinger.cpp index 0408c9f9d..38812e2b8 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) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CStinger.h" diff --git a/plugin_vc/game_vc/CStinger.h b/plugin_vc/game_vc/CStinger.h index 4b6640a71..d74737272 100644 --- a/plugin_vc/game_vc/CStinger.h +++ b/plugin_vc/game_vc/CStinger.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CPed.h" #include "CObject.h" diff --git a/plugin_vc/game_vc/CText.h b/plugin_vc/game_vc/CText.h index 80e52e60b..38b7f86d8 100644 --- a/plugin_vc/game_vc/CText.h +++ b/plugin_vc/game_vc/CText.h @@ -1,5 +1,5 @@ /* - Plugin-SDK (Grand Theft Auto 3) header file + Plugin-SDK (Grand Theft Auto Vice City) header file Authors: GTA Community. See more here https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! diff --git a/plugin_vc/game_vc/CTheZones.cpp b/plugin_vc/game_vc/CTheZones.cpp index 425c9c52d..f125ee07e 100644 --- a/plugin_vc/game_vc/CTheZones.cpp +++ b/plugin_vc/game_vc/CTheZones.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CTheZones.h" diff --git a/plugin_vc/game_vc/CTheZones.h b/plugin_vc/game_vc/CTheZones.h index 2599f923f..507c79e52 100644 --- a/plugin_vc/game_vc/CTheZones.h +++ b/plugin_vc/game_vc/CTheZones.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once #include "PluginBase.h" diff --git a/plugin_vc/game_vc/CTimeModelInfo.cpp b/plugin_vc/game_vc/CTimeModelInfo.cpp index 48955f893..25beff7cc 100644 --- a/plugin_vc/game_vc/CTimeModelInfo.cpp +++ b/plugin_vc/game_vc/CTimeModelInfo.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CTimeModelInfo.h" diff --git a/plugin_vc/game_vc/CTimeModelInfo.h b/plugin_vc/game_vc/CTimeModelInfo.h index 335e0fd45..991bbbb52 100644 --- a/plugin_vc/game_vc/CTimeModelInfo.h +++ b/plugin_vc/game_vc/CTimeModelInfo.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once #include "PluginBase.h" diff --git a/plugin_vc/game_vc/CTrain.cpp b/plugin_vc/game_vc/CTrain.cpp index 4fee8a251..e07694906 100644 --- a/plugin_vc/game_vc/CTrain.cpp +++ b/plugin_vc/game_vc/CTrain.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CTrain.h" diff --git a/plugin_vc/game_vc/CTrain.h b/plugin_vc/game_vc/CTrain.h index fa5cb3c17..81d43cce7 100644 --- a/plugin_vc/game_vc/CTrain.h +++ b/plugin_vc/game_vc/CTrain.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once #include "PluginBase.h" diff --git a/plugin_vc/game_vc/CTxdStore.cpp b/plugin_vc/game_vc/CTxdStore.cpp index 9c694fc63..16ff89b28 100644 --- a/plugin_vc/game_vc/CTxdStore.cpp +++ b/plugin_vc/game_vc/CTxdStore.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CTxdStore.h" diff --git a/plugin_vc/game_vc/CTxdStore.h b/plugin_vc/game_vc/CTxdStore.h index 434c20a39..acc5a607b 100644 --- a/plugin_vc/game_vc/CTxdStore.h +++ b/plugin_vc/game_vc/CTxdStore.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once #include "PluginBase.h" diff --git a/plugin_vc/game_vc/CUserDisplay.cpp b/plugin_vc/game_vc/CUserDisplay.cpp index 83e14bf9a..78bf9ffba 100644 --- a/plugin_vc/game_vc/CUserDisplay.cpp +++ b/plugin_vc/game_vc/CUserDisplay.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CUserDisplay.h" diff --git a/plugin_vc/game_vc/CUserDisplay.h b/plugin_vc/game_vc/CUserDisplay.h index 5f52a84fe..1e7dcc10a 100644 --- a/plugin_vc/game_vc/CUserDisplay.h +++ b/plugin_vc/game_vc/CUserDisplay.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once #include "PluginBase.h" diff --git a/plugin_vc/game_vc/CVehicle.cpp b/plugin_vc/game_vc/CVehicle.cpp index ac9e105d9..be0a0a03c 100644 --- a/plugin_vc/game_vc/CVehicle.cpp +++ b/plugin_vc/game_vc/CVehicle.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CVehicle.h" diff --git a/plugin_vc/game_vc/CVehicle.h b/plugin_vc/game_vc/CVehicle.h index fb8411add..ddc66012f 100644 --- a/plugin_vc/game_vc/CVehicle.h +++ b/plugin_vc/game_vc/CVehicle.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_vc/game_vc/CWanted.cpp b/plugin_vc/game_vc/CWanted.cpp index d5494a206..099dbedab 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) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CWanted.h" diff --git a/plugin_vc/game_vc/CWanted.h b/plugin_vc/game_vc/CWanted.h index 4c52ea4f8..3d959783a 100644 --- a/plugin_vc/game_vc/CWanted.h +++ b/plugin_vc/game_vc/CWanted.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once #include "PluginBase.h" diff --git a/plugin_vc/game_vc/CWeapon.cpp b/plugin_vc/game_vc/CWeapon.cpp index ce276d4b0..05e8be685 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) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CWeapon.h" diff --git a/plugin_vc/game_vc/CWeapon.h b/plugin_vc/game_vc/CWeapon.h index 553b236c5..4d48d84e7 100644 --- a/plugin_vc/game_vc/CWeapon.h +++ b/plugin_vc/game_vc/CWeapon.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "eWeaponType.h" #include "CEntity.h" diff --git a/plugin_vc/game_vc/CWeaponEffects.cpp b/plugin_vc/game_vc/CWeaponEffects.cpp index 4790565c8..57ada345a 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) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CWeaponEffects.h" diff --git a/plugin_vc/game_vc/CWeaponEffects.h b/plugin_vc/game_vc/CWeaponEffects.h index 3bcf43904..4af46e3a2 100644 --- a/plugin_vc/game_vc/CWeaponEffects.h +++ b/plugin_vc/game_vc/CWeaponEffects.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once #include "PluginBase.h" diff --git a/plugin_vc/game_vc/CWeaponInfo.cpp b/plugin_vc/game_vc/CWeaponInfo.cpp index 45ebf69e5..c62dc5be2 100644 --- a/plugin_vc/game_vc/CWeaponInfo.cpp +++ b/plugin_vc/game_vc/CWeaponInfo.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CWeaponInfo.h" diff --git a/plugin_vc/game_vc/CWeaponInfo.h b/plugin_vc/game_vc/CWeaponInfo.h index 76beb4365..c0cc0595a 100644 --- a/plugin_vc/game_vc/CWeaponInfo.h +++ b/plugin_vc/game_vc/CWeaponInfo.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once #include "PluginBase.h" diff --git a/plugin_vc/game_vc/CWeaponModelInfo.cpp b/plugin_vc/game_vc/CWeaponModelInfo.cpp index 88018ba3d..a576202cf 100644 --- a/plugin_vc/game_vc/CWeaponModelInfo.cpp +++ b/plugin_vc/game_vc/CWeaponModelInfo.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CWeaponModelInfo.h" diff --git a/plugin_vc/game_vc/CWeaponModelInfo.h b/plugin_vc/game_vc/CWeaponModelInfo.h index 0e1209b5c..1b65526d6 100644 --- a/plugin_vc/game_vc/CWeaponModelInfo.h +++ b/plugin_vc/game_vc/CWeaponModelInfo.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once #include "PluginBase.h" diff --git a/plugin_vc/game_vc/CWeather.cpp b/plugin_vc/game_vc/CWeather.cpp index 09e7a2edb..3478f0928 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) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CWeather.h" diff --git a/plugin_vc/game_vc/CWeather.h b/plugin_vc/game_vc/CWeather.h index 9c1270a64..6e605f0a3 100644 --- a/plugin_vc/game_vc/CWeather.h +++ b/plugin_vc/game_vc/CWeather.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once #include "PluginBase.h" diff --git a/plugin_vc/game_vc/CWheel.h b/plugin_vc/game_vc/CWheel.h index f8210f761..d38a8c469 100644 --- a/plugin_vc/game_vc/CWheel.h +++ b/plugin_vc/game_vc/CWheel.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" diff --git a/plugin_vc/game_vc/CWorld.cpp b/plugin_vc/game_vc/CWorld.cpp index d41db2801..9d79fb218 100644 --- a/plugin_vc/game_vc/CWorld.cpp +++ b/plugin_vc/game_vc/CWorld.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 "CWorld.h" diff --git a/plugin_vc/game_vc/CWorld.h b/plugin_vc/game_vc/CWorld.h index 2a52eba82..134a92f92 100644 --- a/plugin_vc/game_vc/CWorld.h +++ b/plugin_vc/game_vc/CWorld.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 #define SECTOR_SIZE_X (50.0f) diff --git a/plugin_vc/game_vc/CZoneInfo.h b/plugin_vc/game_vc/CZoneInfo.h index 5558c1a50..6f9d619b3 100644 --- a/plugin_vc/game_vc/CZoneInfo.h +++ b/plugin_vc/game_vc/CZoneInfo.h @@ -1,5 +1,5 @@ /* - Plugin-SDK (Grand Theft Auto Vice City) source file + Plugin-SDK (Grand Theft Auto Vice City) header file Authors: GTA Community. See more here https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! diff --git a/plugin_vc/game_vc/NodeName.h b/plugin_vc/game_vc/NodeName.h index 16d47b483..c47512585 100644 --- a/plugin_vc/game_vc/NodeName.h +++ b/plugin_vc/game_vc/NodeName.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "RenderWare.h" diff --git a/plugin_vc/game_vc/RwObjectNameIdAssocation.h b/plugin_vc/game_vc/RwObjectNameIdAssocation.h index 7ba823625..a8fba5db4 100644 --- a/plugin_vc/game_vc/RwObjectNameIdAssocation.h +++ b/plugin_vc/game_vc/RwObjectNameIdAssocation.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once #include "PluginBase.h" diff --git a/plugin_vc/game_vc/cAudioManager.cpp b/plugin_vc/game_vc/cAudioManager.cpp index db71f1642..61806ec97 100644 --- a/plugin_vc/game_vc/cAudioManager.cpp +++ b/plugin_vc/game_vc/cAudioManager.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 "cAudioManager.h" diff --git a/plugin_vc/game_vc/cAudioManager.h b/plugin_vc/game_vc/cAudioManager.h index 1d3031cc5..08aa83941 100644 --- a/plugin_vc/game_vc/cAudioManager.h +++ b/plugin_vc/game_vc/cAudioManager.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/cDMAudio.h b/plugin_vc/game_vc/cDMAudio.h index 1f789573f..5384ea6db 100644 --- a/plugin_vc/game_vc/cDMAudio.h +++ b/plugin_vc/game_vc/cDMAudio.h @@ -1,5 +1,5 @@ /* - Plugin-SDK (Grand Theft Auto 3) header file + Plugin-SDK (Grand Theft Auto Vice City) header file Authors: GTA Community. See more here https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! diff --git a/plugin_vc/game_vc/cHandlingDataMgr.cpp b/plugin_vc/game_vc/cHandlingDataMgr.cpp index b6ad6986d..e14098af5 100644 --- a/plugin_vc/game_vc/cHandlingDataMgr.cpp +++ b/plugin_vc/game_vc/cHandlingDataMgr.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "cHandlingDataMgr.h" diff --git a/plugin_vc/game_vc/cHandlingDataMgr.h b/plugin_vc/game_vc/cHandlingDataMgr.h index 95c0669d6..d037e7e14 100644 --- a/plugin_vc/game_vc/cHandlingDataMgr.h +++ b/plugin_vc/game_vc/cHandlingDataMgr.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "tHandlingData.h" #include "tBikeHandlingData.h" diff --git a/plugin_vc/game_vc/cSampleManager.cpp b/plugin_vc/game_vc/cSampleManager.cpp index fd75f4a88..294b9d1f9 100644 --- a/plugin_vc/game_vc/cSampleManager.cpp +++ b/plugin_vc/game_vc/cSampleManager.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 "cSampleManager.h" diff --git a/plugin_vc/game_vc/cSampleManager.h b/plugin_vc/game_vc/cSampleManager.h index 41513f0db..aca9b3c12 100644 --- a/plugin_vc/game_vc/cSampleManager.h +++ b/plugin_vc/game_vc/cSampleManager.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/cTransmission.cpp b/plugin_vc/game_vc/cTransmission.cpp index 2823a8855..6f9f04fde 100644 --- a/plugin_vc/game_vc/cTransmission.cpp +++ b/plugin_vc/game_vc/cTransmission.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "cTransmission.h" diff --git a/plugin_vc/game_vc/cTransmission.h b/plugin_vc/game_vc/cTransmission.h index df61ad75c..95cdea610 100644 --- a/plugin_vc/game_vc/cTransmission.h +++ b/plugin_vc/game_vc/cTransmission.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "tTransmissionGear.h" diff --git a/plugin_vc/game_vc/enums/eCopType.h b/plugin_vc/game_vc/enums/eCopType.h index 1d4681e99..68065fc81 100644 --- a/plugin_vc/game_vc/enums/eCopType.h +++ b/plugin_vc/game_vc/enums/eCopType.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_vc/game_vc/enums/eCoronaType.h b/plugin_vc/game_vc/enums/eCoronaType.h index 3483aba77..5ba206e4f 100644 --- a/plugin_vc/game_vc/enums/eCoronaType.h +++ b/plugin_vc/game_vc/enums/eCoronaType.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_vc/game_vc/enums/eCrimeType.h b/plugin_vc/game_vc/enums/eCrimeType.h index dc67c90e6..b980fa670 100644 --- a/plugin_vc/game_vc/enums/eCrimeType.h +++ b/plugin_vc/game_vc/enums/eCrimeType.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_vc/game_vc/enums/eEntityStatus.h b/plugin_vc/game_vc/enums/eEntityStatus.h index a97eed82b..78388ea99 100644 --- a/plugin_vc/game_vc/enums/eEntityStatus.h +++ b/plugin_vc/game_vc/enums/eEntityStatus.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_vc/game_vc/enums/eEventType.h b/plugin_vc/game_vc/enums/eEventType.h index a722822af..e634e2913 100644 --- a/plugin_vc/game_vc/enums/eEventType.h +++ b/plugin_vc/game_vc/enums/eEventType.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_vc/game_vc/enums/eExplosionType.h b/plugin_vc/game_vc/enums/eExplosionType.h index 60436b833..65e19be10 100644 --- a/plugin_vc/game_vc/enums/eExplosionType.h +++ b/plugin_vc/game_vc/enums/eExplosionType.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_vc/game_vc/enums/eFormation.h b/plugin_vc/game_vc/enums/eFormation.h index 07107d1df..d4dc77288 100644 --- a/plugin_vc/game_vc/enums/eFormation.h +++ b/plugin_vc/game_vc/enums/eFormation.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_vc/game_vc/enums/eGangType.h b/plugin_vc/game_vc/enums/eGangType.h index a37c3b0cd..962f1f973 100644 --- a/plugin_vc/game_vc/enums/eGangType.h +++ b/plugin_vc/game_vc/enums/eGangType.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_vc/game_vc/enums/eLevelName.h b/plugin_vc/game_vc/enums/eLevelName.h index 582d679dd..1f1932eb8 100644 --- a/plugin_vc/game_vc/enums/eLevelName.h +++ b/plugin_vc/game_vc/enums/eLevelName.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_vc/game_vc/enums/eModelInfoType.h b/plugin_vc/game_vc/enums/eModelInfoType.h index 66dd34c67..08300920d 100644 --- a/plugin_vc/game_vc/enums/eModelInfoType.h +++ b/plugin_vc/game_vc/enums/eModelInfoType.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once #include diff --git a/plugin_vc/game_vc/enums/eParticleObjectType.h b/plugin_vc/game_vc/enums/eParticleObjectType.h index 777e0887d..b0db18b6e 100644 --- a/plugin_vc/game_vc/enums/eParticleObjectType.h +++ b/plugin_vc/game_vc/enums/eParticleObjectType.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_vc/game_vc/enums/ePedAction.h b/plugin_vc/game_vc/enums/ePedAction.h index c043feabc..38e8df3c8 100644 --- a/plugin_vc/game_vc/enums/ePedAction.h +++ b/plugin_vc/game_vc/enums/ePedAction.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_vc/game_vc/enums/ePedModel.h b/plugin_vc/game_vc/enums/ePedModel.h index 2ad92b0f4..46ade15cc 100644 --- a/plugin_vc/game_vc/enums/ePedModel.h +++ b/plugin_vc/game_vc/enums/ePedModel.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_vc/game_vc/enums/ePedPieceTypes.h b/plugin_vc/game_vc/enums/ePedPieceTypes.h index 4bae6d1ad..ea706e0e1 100644 --- a/plugin_vc/game_vc/enums/ePedPieceTypes.h +++ b/plugin_vc/game_vc/enums/ePedPieceTypes.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_vc/game_vc/enums/ePedStats.h b/plugin_vc/game_vc/enums/ePedStats.h index 268013842..c03f9af40 100644 --- a/plugin_vc/game_vc/enums/ePedStats.h +++ b/plugin_vc/game_vc/enums/ePedStats.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_vc/game_vc/enums/ePickupType.h b/plugin_vc/game_vc/enums/ePickupType.h index 539b4f830..fa16e2b37 100644 --- a/plugin_vc/game_vc/enums/ePickupType.h +++ b/plugin_vc/game_vc/enums/ePickupType.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_vc/game_vc/enums/eRadioStations.h b/plugin_vc/game_vc/enums/eRadioStations.h index af2a791ac..2535e42d2 100644 --- a/plugin_vc/game_vc/enums/eRadioStations.h +++ b/plugin_vc/game_vc/enums/eRadioStations.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_vc/game_vc/enums/eSceneCommands.h b/plugin_vc/game_vc/enums/eSceneCommands.h index 097667375..b936e8fe4 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 Vice 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/eShadowType.h b/plugin_vc/game_vc/enums/eShadowType.h index d322c3983..250b513de 100644 --- a/plugin_vc/game_vc/enums/eShadowType.h +++ b/plugin_vc/game_vc/enums/eShadowType.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_vc/game_vc/enums/eVehicleFlags.h b/plugin_vc/game_vc/enums/eVehicleFlags.h index c7eea4feb..2c9d1f416 100644 --- a/plugin_vc/game_vc/enums/eVehicleFlags.h +++ b/plugin_vc/game_vc/enums/eVehicleFlags.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_vc/game_vc/enums/eVehicleType.h b/plugin_vc/game_vc/enums/eVehicleType.h index cf94d9b80..2734d02ab 100644 --- a/plugin_vc/game_vc/enums/eVehicleType.h +++ b/plugin_vc/game_vc/enums/eVehicleType.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_vc/game_vc/enums/eWaitState.h b/plugin_vc/game_vc/enums/eWaitState.h index 605f1d61b..9540343d2 100644 --- a/plugin_vc/game_vc/enums/eWaitState.h +++ b/plugin_vc/game_vc/enums/eWaitState.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_vc/game_vc/enums/eWeaponFire.h b/plugin_vc/game_vc/enums/eWeaponFire.h index d0d569089..80a38e140 100644 --- a/plugin_vc/game_vc/enums/eWeaponFire.h +++ b/plugin_vc/game_vc/enums/eWeaponFire.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_vc/game_vc/enums/eWeaponModel.h b/plugin_vc/game_vc/enums/eWeaponModel.h index 6cb354ea2..14288090d 100644 --- a/plugin_vc/game_vc/enums/eWeaponModel.h +++ b/plugin_vc/game_vc/enums/eWeaponModel.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_vc/game_vc/enums/eWeaponType.h b/plugin_vc/game_vc/enums/eWeaponType.h index a393be90c..84968ac5d 100644 --- a/plugin_vc/game_vc/enums/eWeaponType.h +++ b/plugin_vc/game_vc/enums/eWeaponType.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_vc/game_vc/enums/eWeather.h b/plugin_vc/game_vc/enums/eWeather.h index d2657fb4a..363e1f047 100644 --- a/plugin_vc/game_vc/enums/eWeather.h +++ b/plugin_vc/game_vc/enums/eWeather.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_vc/game_vc/tBikeHandlingData.h b/plugin_vc/game_vc/tBikeHandlingData.h index 1f373dc60..541e704b3 100644 --- a/plugin_vc/game_vc/tBikeHandlingData.h +++ b/plugin_vc/game_vc/tBikeHandlingData.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" struct tBikeHandlingData { diff --git a/plugin_vc/game_vc/tBoatHandlingData.h b/plugin_vc/game_vc/tBoatHandlingData.h index aef44bcff..9dd5d0b0f 100644 --- a/plugin_vc/game_vc/tBoatHandlingData.h +++ b/plugin_vc/game_vc/tBoatHandlingData.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" diff --git a/plugin_vc/game_vc/tFlyingHandlingData.h b/plugin_vc/game_vc/tFlyingHandlingData.h index 5d9aa7334..22d6e8d4e 100644 --- a/plugin_vc/game_vc/tFlyingHandlingData.h +++ b/plugin_vc/game_vc/tFlyingHandlingData.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" diff --git a/plugin_vc/game_vc/tHandlingData.h b/plugin_vc/game_vc/tHandlingData.h index 609dcee0c..997505455 100644 --- a/plugin_vc/game_vc/tHandlingData.h +++ b/plugin_vc/game_vc/tHandlingData.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "cTransmission.h" #include "CVector.h" diff --git a/plugin_vc/game_vc/tTransmissionGear.h b/plugin_vc/game_vc/tTransmissionGear.h index 8a0665289..a3eda920f 100644 --- a/plugin_vc/game_vc/tTransmissionGear.h +++ b/plugin_vc/game_vc/tTransmissionGear.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" struct PLUGIN_API tTransmissionGear diff --git a/shared/GameVersion.cpp b/shared/GameVersion.cpp index c1292c015..908480f54 100644 --- a/shared/GameVersion.cpp +++ b/shared/GameVersion.cpp @@ -1,5 +1,5 @@ /* - Plugin-SDK (Grand Theft Auto) source file + Plugin-SDK (Grand Theft Auto) SHARED source file Authors: GTA Community. See more here https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! diff --git a/shared/GameVersion.h b/shared/GameVersion.h index d969bb3b4..8f31802ba 100644 --- a/shared/GameVersion.h +++ b/shared/GameVersion.h @@ -1,5 +1,5 @@ /* - Plugin-SDK (Grand Theft Auto) header file + Plugin-SDK (Grand Theft Auto) SHARED header file Authors: GTA Community. See more here https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! diff --git a/shared/GameVersionMessage.h b/shared/GameVersionMessage.h index e7104914d..29c1d829f 100644 --- a/shared/GameVersionMessage.h +++ b/shared/GameVersionMessage.h @@ -1,11 +1,10 @@ /* - Plugin-SDK (Grand Theft Auto) header file + Plugin-SDK (Grand Theft Auto) SHARED header 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 "GameVersion.h" #include #include diff --git a/shared/TextLoader.cpp b/shared/TextLoader.cpp index ff0711c76..17b5ca54c 100644 --- a/shared/TextLoader.cpp +++ b/shared/TextLoader.cpp @@ -1,4 +1,4 @@ -/* +/* Plugin-SDK (Grand Theft Auto) SHARED source file Authors: GTA Community. See more here https://github.com/DK22Pac/plugin-sdk diff --git a/shared/Timer.cpp b/shared/Timer.cpp deleted file mode 100644 index e69de29bb..000000000 diff --git a/shared/VersionsMacro.h b/shared/VersionsMacro.h index 2616c37bd..fac664a4c 100644 --- a/shared/VersionsMacro.h +++ b/shared/VersionsMacro.h @@ -1,7 +1,7 @@ /* Plugin-SDK (Grand Theft Auto) SHARED header file Authors: GTA Community. See more here - https://github.com/GTAmodding/plugin-sdk + https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/shared/game/CVector.cpp b/shared/game/CVector.cpp index 33a4e28c7..cb183c017 100644 --- a/shared/game/CVector.cpp +++ b/shared/game/CVector.cpp @@ -1,10 +1,9 @@ /* - Plugin-SDK source file + Plugin-SDK (Grand Theft Auto) SHARED source file Authors: GTA Community. See more here https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! */ - #include "CVector.h" #ifdef HAS_CMATRIX diff --git a/shared/game/CVector.h b/shared/game/CVector.h index 196095ac3..90548f6c2 100644 --- a/shared/game/CVector.h +++ b/shared/game/CVector.h @@ -1,5 +1,5 @@ /* - Plugin-SDK header file + Plugin-SDK (Grand Theft Auto) SHARED header file Authors: GTA Community. See more here https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! diff --git a/shared/game/CVector2D.h b/shared/game/CVector2D.h index d4c1fe024..282b0b826 100644 --- a/shared/game/CVector2D.h +++ b/shared/game/CVector2D.h @@ -1,5 +1,5 @@ /* - Plugin-SDK header file + Plugin-SDK (Grand Theft Auto) SHARED header file Authors: GTA Community. See more here https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! diff --git a/shared/game/CVector2DImplementation.h b/shared/game/CVector2DImplementation.h index cdd586975..6efb82818 100644 --- a/shared/game/CVector2DImplementation.h +++ b/shared/game/CVector2DImplementation.h @@ -1,5 +1,5 @@ /* - Plugin-SDK source file + Plugin-SDK (Grand Theft Auto) SHARED header file Authors: GTA Community. See more here https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! diff --git a/shared/game/CVectorImplementation.h b/shared/game/CVectorImplementation.h index cf8d030c3..e5c137da9 100644 --- a/shared/game/CVectorImplementation.h +++ b/shared/game/CVectorImplementation.h @@ -1,5 +1,5 @@ /* - Plugin-SDK source file + Plugin-SDK (Grand Theft Auto) SHARED header file Authors: GTA Community. See more here https://github.com/DK22Pac/plugin-sdk Do not delete this comment block. Respect others' work! diff --git a/shared/rpplugin.h b/shared/rpplugin.h index 6f70f09be..2c6de221f 100644 --- a/shared/rpplugin.h +++ b/shared/rpplugin.h @@ -1 +1,7 @@ +/* + Plugin-SDK (Grand Theft Auto) SHARED header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! +*/ #pragma once