From 8ebc7ef0313bfa56754c1e8fa1f87f2071241bed Mon Sep 17 00:00:00 2001 From: Miran Date: Sun, 26 Apr 2026 03:21:03 +0200 Subject: [PATCH 1/2] New workflow: verify file contents --- .github/workflows/Validate_File_Contents.yaml | 36 ++++++ .../workflows/scripts/Validate_Contents.js | 122 ++++++++++++++++++ 2 files changed, 158 insertions(+) create mode 100644 .github/workflows/Validate_File_Contents.yaml create mode 100644 .github/workflows/scripts/Validate_Contents.js diff --git a/.github/workflows/Validate_File_Contents.yaml b/.github/workflows/Validate_File_Contents.yaml new file mode 100644 index 00000000..365539b2 --- /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 00000000..a01d9a89 --- /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; +} From 04c505bd604cd9e2d78b217e524060fd7b5ace0c Mon Sep 17 00:00:00 2001 From: Miran Date: Sun, 26 Apr 2026 03:55:32 +0200 Subject: [PATCH 2/2] PSDK file info comment fixes and style unification --- examples/Neon/KeyCheck.cpp | 8 ++++---- examples/Neon/KeyCheck.h | 8 ++++---- plugin_II/game_II/CPopulation.cpp | 2 +- plugin_II/game_II/tImage.h | 6 ++++++ plugin_II/game_II/tLight.h | 6 ++++++ plugin_II/game_II/tVertex.h | 6 ++++++ plugin_III/game_III/CAutoPilot.cpp | 8 ++++---- plugin_III/game_III/CAutoPilot.h | 9 ++++----- plugin_III/game_III/CControllerConfigManager.cpp | 8 ++++---- plugin_III/game_III/CControllerConfigManager.h | 8 ++++---- plugin_III/game_III/CControllerState.cpp | 8 ++++---- plugin_III/game_III/CControllerState.h | 9 ++++----- plugin_III/game_III/CFileLoader.h | 9 ++++----- plugin_III/game_III/CFontDetails.cpp | 8 ++++---- plugin_III/game_III/CFontDetails.h | 9 ++++----- plugin_III/game_III/CHud.cpp | 8 ++++---- plugin_III/game_III/CHud.h | 10 +++++----- plugin_III/game_III/CKeyboardState.cpp | 8 ++++---- plugin_III/game_III/CKeyboardState.h | 11 ++++------- plugin_III/game_III/CMenuManager.cpp | 8 ++++---- plugin_III/game_III/CMenuManager.h | 8 ++++---- plugin_III/game_III/CPad.cpp | 8 ++++---- plugin_III/game_III/CPad.h | 9 ++++----- plugin_III/game_III/CPedType.cpp | 8 ++++---- plugin_III/game_III/CPedType.h | 9 ++++----- plugin_III/game_III/CPlayerInfo.cpp | 2 +- plugin_III/game_III/CPointLights.cpp | 8 ++++---- plugin_III/game_III/CPointLights.h | 9 ++++----- plugin_III/game_III/CRenderer.cpp | 8 ++++---- plugin_III/game_III/CRenderer.h | 8 ++++---- plugin_III/game_III/CReplay.cpp | 8 ++++---- plugin_III/game_III/CReplay.h | 8 ++++---- plugin_III/game_III/CRunningScript.cpp | 2 +- plugin_III/game_III/CStats.cpp | 8 ++++---- plugin_III/game_III/CStreamingInfo.cpp | 8 ++++---- plugin_III/game_III/CTheScripts.cpp | 2 +- plugin_III/game_III/CWeaponEffects.cpp | 8 ++++---- plugin_III/game_III/CWeaponEffects.h | 9 ++++----- plugin_III/game_III/CWeaponInfo.cpp | 8 ++++---- plugin_III/game_III/cAudioManager.cpp | 2 +- plugin_III/game_III/cSampleManager.cpp | 8 ++++---- plugin_III/game_III/cSampleManager.h | 8 ++++---- plugin_III/game_III/enums/eBridgeState.h | 2 +- plugin_III/game_III/enums/eCoronaType.h | 8 ++++---- plugin_III/game_III/enums/eCrimeType.h | 8 ++++---- plugin_III/game_III/enums/ePedModel.h | 8 ++++---- plugin_III/game_III/enums/eSceneCommands.h | 8 ++++---- plugin_III/game_III/enums/eWeaponModel.h | 8 ++++---- plugin_III/game_III/enums/eWeaponType.h | 8 ++++---- plugin_III/game_III/enums/eWeather.h | 8 ++++---- plugin_III/game_III/enums/eWheelModel.h | 8 ++++---- plugin_III/game_III/tTransmissionGear.h | 9 ++++----- plugin_IV/game_IV/CCamScriptInstruction.cpp | 2 +- plugin_IV/game_IV/CGrcState_SetLightingMode.cpp | 2 +- plugin_IV/game_IV/CHudColours.cpp | 2 +- plugin_IV/game_IV/CHudComponent.cpp | 2 +- plugin_IV/game_IV/CUserDisplay.h | 8 ++++---- plugin_IV/game_IV/eModelHashes.h | 6 ++++++ plugin_iii_unreal/game_iii_unreal/CRect.h | 2 +- plugin_sa/game_sa/CAEWeaponAudioEntity.cpp | 8 ++++---- plugin_sa/game_sa/CAnimBlendAssocGroup.cpp | 9 ++++----- plugin_sa/game_sa/CAnimBlendHierarchy.cpp | 9 ++++----- plugin_sa/game_sa/CAnimBlendNode.cpp | 3 +-- plugin_sa/game_sa/CAnimBlendSequence.cpp | 9 ++++----- plugin_sa/game_sa/CAnimManager.cpp | 8 ++++---- plugin_sa/game_sa/CCam.h | 9 ++++----- plugin_sa/game_sa/CCamera.cpp | 8 ++++---- plugin_sa/game_sa/CCamera.h | 9 ++++----- plugin_sa/game_sa/CCarAI.cpp | 9 ++++----- plugin_sa/game_sa/CCarAI.h | 8 ++++---- plugin_sa/game_sa/CCarGenerator.cpp | 8 ++++---- plugin_sa/game_sa/CClothes.cpp | 3 +-- plugin_sa/game_sa/CClothesBuilder.cpp | 3 +-- plugin_sa/game_sa/CClothesBuilder.h | 1 - plugin_sa/game_sa/CColourSet.h | 9 ++++----- plugin_sa/game_sa/CCullZones.cpp | 2 +- plugin_sa/game_sa/CCustomCarEnvMapPipeline.cpp | 8 ++++---- plugin_sa/game_sa/CExplosion.h | 9 ++++----- plugin_sa/game_sa/CLoadingScreen.cpp | 3 +-- plugin_sa/game_sa/CObjectData.cpp | 2 +- plugin_sa/game_sa/CPedClothesDesc.cpp | 3 +-- plugin_sa/game_sa/CPedDamageResponse.h | 7 ++++++- plugin_sa/game_sa/CPedIK.cpp | 9 ++++----- plugin_sa/game_sa/CPedStuckChecker.h | 3 +-- plugin_sa/game_sa/CPedType.cpp | 8 ++++---- plugin_sa/game_sa/CPlayerInfo.cpp | 8 ++++---- plugin_sa/game_sa/CPools.h | 9 ++++----- plugin_sa/game_sa/CPopCycle.cpp | 8 ++++---- plugin_sa/game_sa/CPtrNode.h | 8 ++++---- plugin_sa/game_sa/CRadar.h | 9 ++++----- plugin_sa/game_sa/CReplay.cpp | 8 ++++---- plugin_sa/game_sa/CReplay.h | 8 ++++---- plugin_sa/game_sa/CRoadBlocks.h | 3 +-- plugin_sa/game_sa/CRunningScript.cpp | 8 ++++---- plugin_sa/game_sa/CShopping.cpp | 8 ++++---- plugin_sa/game_sa/CStuntJumpManager.cpp | 8 ++++---- plugin_sa/game_sa/CTagManager.cpp | 8 ++++---- plugin_sa/game_sa/CTaskComplexClimb.cpp | 8 ++++---- plugin_sa/game_sa/CTaskComplexClimb.h | 9 ++++----- plugin_sa/game_sa/CTaskComplexCopInCar.cpp | 9 ++++----- plugin_sa/game_sa/CTaskComplexDie.cpp | 8 ++++---- plugin_sa/game_sa/CTaskComplexDie.h | 9 ++++----- plugin_sa/game_sa/CTaskComplexDriveFireTruck.cpp | 8 ++++---- plugin_sa/game_sa/CTaskComplexDriveFireTruck.h | 12 ++++++------ plugin_sa/game_sa/CTaskComplexEnterBoatAsDriver.cpp | 9 ++++----- plugin_sa/game_sa/CTaskComplexEnterBoatAsDriver.h | 9 ++++----- plugin_sa/game_sa/CTaskComplexEnterCar.cpp | 8 ++++---- plugin_sa/game_sa/CTaskComplexEnterCar.h | 9 ++++----- plugin_sa/game_sa/CTaskComplexEnterCarAsDriver.cpp | 8 ++++---- plugin_sa/game_sa/CTaskComplexEnterCarAsDriver.h | 9 ++++----- .../game_sa/CTaskComplexEnterCarAsPassenger.cpp | 8 ++++---- plugin_sa/game_sa/CTaskComplexEnterCarAsPassenger.h | 9 ++++----- plugin_sa/game_sa/CTaskComplexFacial.cpp | 9 ++++----- plugin_sa/game_sa/CTaskComplexFacial.h | 9 ++++----- plugin_sa/game_sa/CTaskComplexJump.cpp | 8 ++++---- plugin_sa/game_sa/CTaskComplexJump.h | 9 ++++----- plugin_sa/game_sa/CTaskComplexKillPedFromBoat.cpp | 9 ++++----- plugin_sa/game_sa/CTaskComplexKillPedFromBoat.h | 3 +-- plugin_sa/game_sa/CTaskComplexLeaveCar.cpp | 9 ++++----- plugin_sa/game_sa/CTaskComplexLeaveCar.h | 9 ++++----- .../game_sa/CTaskComplexMedicTreatInjuredPed.cpp | 8 ++++---- plugin_sa/game_sa/CTaskComplexMedicTreatInjuredPed.h | 12 ++++++------ plugin_sa/game_sa/CTaskComplexStuckInAir.cpp | 9 ++++----- plugin_sa/game_sa/CTaskComplexStuckInAir.h | 9 ++++----- plugin_sa/game_sa/CTaskComplexSunbathe.cpp | 8 ++++---- plugin_sa/game_sa/CTaskComplexSunbathe.h | 9 ++++----- plugin_sa/game_sa/CTaskComplexUseMobilePhone.cpp | 8 ++++---- plugin_sa/game_sa/CTaskComplexUseMobilePhone.h | 9 ++++----- .../game_sa/CTaskSimpleCarSetPedInAsPassenger.cpp | 8 ++++---- plugin_sa/game_sa/CTaskSimpleCarSetPedOut.cpp | 8 ++++---- plugin_sa/game_sa/CTaskSimpleChoking.cpp | 8 ++++---- plugin_sa/game_sa/CTaskSimpleChoking.h | 9 ++++----- plugin_sa/game_sa/CTaskSimpleFacial.cpp | 8 ++++---- plugin_sa/game_sa/CTaskSimpleFacial.h | 9 ++++----- plugin_sa/game_sa/CTaskSimpleGangDriveBy.cpp | 8 ++++---- plugin_sa/game_sa/CTaskSimpleGangDriveBy.h | 9 ++++----- plugin_sa/game_sa/CTaskSimpleIKChain.cpp | 9 ++++----- plugin_sa/game_sa/CTaskSimpleIKChain.h | 9 ++++----- plugin_sa/game_sa/CTaskSimpleIKLookAt.cpp | 8 ++++---- plugin_sa/game_sa/CTaskSimpleIKLookAt.h | 9 ++++----- plugin_sa/game_sa/CTaskSimpleIKManager.cpp | 8 ++++---- plugin_sa/game_sa/CTaskSimpleIKManager.h | 9 ++++----- plugin_sa/game_sa/CTaskSimplePlayerOnFoot.cpp | 8 ++++---- plugin_sa/game_sa/CTaskSimplePlayerOnFoot.h | 9 ++++----- plugin_sa/game_sa/CTaskSimpleRunAnim.cpp | 8 ++++---- plugin_sa/game_sa/CTaskSimpleRunAnim.h | 9 ++++----- plugin_sa/game_sa/CTaskSimpleRunNamedAnim.cpp | 8 ++++---- plugin_sa/game_sa/CTaskSimpleStealthKill.cpp | 8 ++++---- plugin_sa/game_sa/CTaskSimpleStealthKill.h | 9 ++++----- plugin_sa/game_sa/CTaskSimpleTriggerLookAt.cpp | 8 ++++---- plugin_sa/game_sa/CTaskSimpleTriggerLookAt.h | 9 ++++----- plugin_sa/game_sa/CTaskSimpleUseGun.h | 3 +-- plugin_sa/game_sa/CTheCarGenerators.cpp | 8 ++++---- plugin_sa/game_sa/CTheCarGenerators.h | 9 ++++----- plugin_sa/game_sa/CTheScripts.cpp | 8 ++++---- plugin_sa/game_sa/CTimeCycle.h | 9 ++++----- plugin_sa/game_sa/CTimeCycleBox.h | 9 ++++----- plugin_sa/game_sa/CWorld.cpp | 8 ++++---- plugin_sa/game_sa/CWorld.h | 8 ++++---- plugin_sa/game_sa/CZoneInfo.h | 8 ++++---- plugin_sa/game_sa/JPegCompress.cpp | 6 ++++++ plugin_sa/game_sa/ListItem_c.cpp | 6 ++++++ plugin_sa/game_sa/List_c.cpp | 6 ++++++ plugin_sa/game_sa/SurfaceInfos_c.h | 2 +- plugin_sa/game_sa/tHandlingData.h | 9 ++++----- plugin_vc/game_vc/CAutomobile.cpp | 8 ++++---- plugin_vc/game_vc/CAutomobile.h | 9 ++++----- plugin_vc/game_vc/CBike.cpp | 8 ++++---- plugin_vc/game_vc/CBike.h | 8 ++++---- plugin_vc/game_vc/CBoat.cpp | 8 ++++---- plugin_vc/game_vc/CBoat.h | 8 ++++---- plugin_vc/game_vc/CBox.cpp | 8 ++++---- plugin_vc/game_vc/CBox.h | 9 ++++----- plugin_vc/game_vc/CCarCtrl.cpp | 8 ++++---- plugin_vc/game_vc/CCarCtrl.h | 8 ++++---- plugin_vc/game_vc/CCarGenerator.cpp | 8 ++++---- plugin_vc/game_vc/CCarGenerator.h | 8 ++++---- plugin_vc/game_vc/CCivilianPed.cpp | 8 ++++---- plugin_vc/game_vc/CCivilianPed.h | 9 ++++----- plugin_vc/game_vc/CClouds.cpp | 8 ++++---- plugin_vc/game_vc/CClouds.h | 8 ++++---- plugin_vc/game_vc/CClumpModelInfo.cpp | 8 ++++---- plugin_vc/game_vc/CClumpModelInfo.h | 9 ++++----- plugin_vc/game_vc/CColBox.cpp | 8 ++++---- plugin_vc/game_vc/CColBox.h | 9 ++++----- plugin_vc/game_vc/CColLine.cpp | 8 ++++---- plugin_vc/game_vc/CColLine.h | 9 ++++----- plugin_vc/game_vc/CColModel.cpp | 8 ++++---- plugin_vc/game_vc/CColModel.h | 8 ++++---- plugin_vc/game_vc/CColSphere.cpp | 8 ++++---- plugin_vc/game_vc/CColSphere.h | 9 ++++----- plugin_vc/game_vc/CCopPed.cpp | 8 ++++---- plugin_vc/game_vc/CCopPed.h | 9 ++++----- plugin_vc/game_vc/CCoronas.cpp | 2 +- plugin_vc/game_vc/CCoronas.h | 3 +-- plugin_vc/game_vc/CDamageManager.cpp | 8 ++++---- plugin_vc/game_vc/CDamageManager.h | 8 ++++---- plugin_vc/game_vc/CDarkel.cpp | 8 ++++---- plugin_vc/game_vc/CDarkel.h | 8 ++++---- plugin_vc/game_vc/CDoor.cpp | 8 ++++---- plugin_vc/game_vc/CDoor.h | 9 ++++----- plugin_vc/game_vc/CDraw.cpp | 3 +-- plugin_vc/game_vc/CEmergencyPed.cpp | 8 ++++---- plugin_vc/game_vc/CEmergencyPed.h | 9 ++++----- plugin_vc/game_vc/CEntity.cpp | 8 ++++---- plugin_vc/game_vc/CEscalators.cpp | 8 ++++---- plugin_vc/game_vc/CEscalators.h | 8 ++++---- plugin_vc/game_vc/CGangs.cpp | 8 ++++---- plugin_vc/game_vc/CGangs.h | 9 ++++----- plugin_vc/game_vc/CGarage.h | 6 ++++++ plugin_vc/game_vc/CHeli.cpp | 8 ++++---- plugin_vc/game_vc/CHeli.h | 9 ++++----- plugin_vc/game_vc/CIniFile.cpp | 8 ++++---- plugin_vc/game_vc/CIniFile.h | 9 ++++----- plugin_vc/game_vc/CMatrix.h | 8 ++++---- plugin_vc/game_vc/CModelInfo.cpp | 8 ++++---- plugin_vc/game_vc/CMovie.cpp | 2 +- plugin_vc/game_vc/COnscreenTimer.cpp | 8 ++++---- plugin_vc/game_vc/COnscreenTimer.h | 8 ++++---- plugin_vc/game_vc/CPedModelInfo.cpp | 8 ++++---- plugin_vc/game_vc/CPedModelInfo.h | 8 ++++---- plugin_vc/game_vc/CPedPlacement.cpp | 8 ++++---- plugin_vc/game_vc/CPedPlacement.h | 8 ++++---- plugin_vc/game_vc/CPedStats.cpp | 2 +- plugin_vc/game_vc/CPedType.cpp | 2 +- plugin_vc/game_vc/CPickups.cpp | 8 ++++---- plugin_vc/game_vc/CPickups.h | 8 ++++---- plugin_vc/game_vc/CPlane.cpp | 8 ++++---- plugin_vc/game_vc/CPlane.h | 8 ++++---- plugin_vc/game_vc/CPlayerInfo.cpp | 8 ++++---- plugin_vc/game_vc/CPlayerInfo.h | 8 ++++---- plugin_vc/game_vc/CPlayerPed.cpp | 8 ++++---- plugin_vc/game_vc/CPlayerPed.h | 9 ++++----- plugin_vc/game_vc/CPopulation.cpp | 8 ++++---- plugin_vc/game_vc/CPopulation.h | 8 ++++---- plugin_vc/game_vc/CProjectile.cpp | 8 ++++---- plugin_vc/game_vc/CProjectile.h | 9 ++++----- plugin_vc/game_vc/CProjectileInfo.cpp | 8 ++++---- plugin_vc/game_vc/CProjectileInfo.h | 9 ++++----- plugin_vc/game_vc/CPtrNode.h | 9 ++++----- plugin_vc/game_vc/CQuaternion.h | 8 ++++---- plugin_vc/game_vc/CRenderer.cpp | 8 ++++---- plugin_vc/game_vc/CRenderer.h | 8 ++++---- plugin_vc/game_vc/CReplay.cpp | 8 ++++---- plugin_vc/game_vc/CReplay.h | 8 ++++---- plugin_vc/game_vc/CRunningScript.cpp | 2 +- plugin_vc/game_vc/CSphere.cpp | 8 ++++---- plugin_vc/game_vc/CSphere.h | 9 ++++----- plugin_vc/game_vc/CStats.cpp | 8 ++++---- plugin_vc/game_vc/CStats.h | 8 ++++---- plugin_vc/game_vc/CStinger.cpp | 8 ++++---- plugin_vc/game_vc/CStinger.h | 9 ++++----- plugin_vc/game_vc/CText.h | 2 +- plugin_vc/game_vc/CTheZones.cpp | 8 ++++---- plugin_vc/game_vc/CTheZones.h | 8 ++++---- plugin_vc/game_vc/CTimeModelInfo.cpp | 8 ++++---- plugin_vc/game_vc/CTimeModelInfo.h | 8 ++++---- plugin_vc/game_vc/CTrain.cpp | 8 ++++---- plugin_vc/game_vc/CTrain.h | 8 ++++---- plugin_vc/game_vc/CTxdStore.cpp | 8 ++++---- plugin_vc/game_vc/CTxdStore.h | 8 ++++---- plugin_vc/game_vc/CUserDisplay.cpp | 8 ++++---- plugin_vc/game_vc/CUserDisplay.h | 8 ++++---- plugin_vc/game_vc/CVehicle.cpp | 8 ++++---- plugin_vc/game_vc/CVehicle.h | 8 ++++---- plugin_vc/game_vc/CWanted.cpp | 8 ++++---- plugin_vc/game_vc/CWanted.h | 8 ++++---- plugin_vc/game_vc/CWeapon.cpp | 8 ++++---- plugin_vc/game_vc/CWeapon.h | 9 ++++----- plugin_vc/game_vc/CWeaponEffects.cpp | 8 ++++---- plugin_vc/game_vc/CWeaponEffects.h | 8 ++++---- plugin_vc/game_vc/CWeaponInfo.cpp | 8 ++++---- plugin_vc/game_vc/CWeaponInfo.h | 8 ++++---- plugin_vc/game_vc/CWeaponModelInfo.cpp | 8 ++++---- plugin_vc/game_vc/CWeaponModelInfo.h | 8 ++++---- plugin_vc/game_vc/CWeather.cpp | 8 ++++---- plugin_vc/game_vc/CWeather.h | 8 ++++---- plugin_vc/game_vc/CWheel.h | 9 ++++----- plugin_vc/game_vc/CWorld.cpp | 8 ++++---- plugin_vc/game_vc/CWorld.h | 8 ++++---- plugin_vc/game_vc/CZoneInfo.h | 2 +- plugin_vc/game_vc/NodeName.h | 1 - plugin_vc/game_vc/RwObjectNameIdAssocation.h | 8 ++++---- plugin_vc/game_vc/cAudioManager.cpp | 8 ++++---- plugin_vc/game_vc/cAudioManager.h | 8 ++++---- plugin_vc/game_vc/cDMAudio.h | 2 +- plugin_vc/game_vc/cHandlingDataMgr.cpp | 8 ++++---- plugin_vc/game_vc/cHandlingDataMgr.h | 9 ++++----- plugin_vc/game_vc/cSampleManager.cpp | 8 ++++---- plugin_vc/game_vc/cSampleManager.h | 8 ++++---- plugin_vc/game_vc/cTransmission.cpp | 8 ++++---- plugin_vc/game_vc/cTransmission.h | 9 ++++----- plugin_vc/game_vc/enums/eCopType.h | 8 ++++---- plugin_vc/game_vc/enums/eCoronaType.h | 8 ++++---- plugin_vc/game_vc/enums/eCrimeType.h | 8 ++++---- plugin_vc/game_vc/enums/eEntityStatus.h | 8 ++++---- plugin_vc/game_vc/enums/eEventType.h | 8 ++++---- plugin_vc/game_vc/enums/eExplosionType.h | 8 ++++---- plugin_vc/game_vc/enums/eFormation.h | 8 ++++---- plugin_vc/game_vc/enums/eGangType.h | 8 ++++---- plugin_vc/game_vc/enums/eLevelName.h | 8 ++++---- plugin_vc/game_vc/enums/eModelInfoType.h | 8 ++++---- plugin_vc/game_vc/enums/eParticleObjectType.h | 8 ++++---- plugin_vc/game_vc/enums/ePedAction.h | 8 ++++---- plugin_vc/game_vc/enums/ePedModel.h | 8 ++++---- plugin_vc/game_vc/enums/ePedPieceTypes.h | 8 ++++---- plugin_vc/game_vc/enums/ePedStats.h | 8 ++++---- plugin_vc/game_vc/enums/ePickupType.h | 8 ++++---- plugin_vc/game_vc/enums/eRadioStations.h | 8 ++++---- plugin_vc/game_vc/enums/eSceneCommands.h | 8 ++++---- plugin_vc/game_vc/enums/eShadowType.h | 8 ++++---- plugin_vc/game_vc/enums/eVehicleFlags.h | 8 ++++---- plugin_vc/game_vc/enums/eVehicleType.h | 8 ++++---- plugin_vc/game_vc/enums/eWaitState.h | 8 ++++---- plugin_vc/game_vc/enums/eWeaponFire.h | 8 ++++---- plugin_vc/game_vc/enums/eWeaponModel.h | 8 ++++---- plugin_vc/game_vc/enums/eWeaponType.h | 8 ++++---- plugin_vc/game_vc/enums/eWeather.h | 8 ++++---- plugin_vc/game_vc/tBikeHandlingData.h | 9 ++++----- plugin_vc/game_vc/tBoatHandlingData.h | 9 ++++----- plugin_vc/game_vc/tFlyingHandlingData.h | 9 ++++----- plugin_vc/game_vc/tHandlingData.h | 9 ++++----- plugin_vc/game_vc/tTransmissionGear.h | 9 ++++----- shared/GameVersion.cpp | 2 +- shared/GameVersion.h | 2 +- shared/GameVersionMessage.h | 3 +-- shared/TextLoader.cpp | 2 +- shared/Timer.cpp | 0 shared/VersionsMacro.h | 2 +- shared/game/CVector.cpp | 3 +-- shared/game/CVector.h | 2 +- shared/game/CVector2D.h | 2 +- shared/game/CVector2DImplementation.h | 2 +- shared/game/CVectorImplementation.h | 2 +- shared/rpplugin.h | 6 ++++++ 335 files changed, 1224 insertions(+), 1264 deletions(-) delete mode 100644 shared/Timer.cpp diff --git a/examples/Neon/KeyCheck.cpp b/examples/Neon/KeyCheck.cpp index 1f0adb85..f02f2dc2 100644 --- a/examples/Neon/KeyCheck.cpp +++ b/examples/Neon/KeyCheck.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "KeyCheck.h" #include "plugin.h" diff --git a/examples/Neon/KeyCheck.h b/examples/Neon/KeyCheck.h index f83207c0..9f87fc11 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 5f57cad7..ac9ae3f4 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 48ea7ee7..2f2a46c1 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 024e05c1..cb59ed06 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 ac362c6a..75ec8e2c 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 e1250e1b..d8d85a23 100644 --- a/plugin_III/game_III/CAutoPilot.cpp +++ b/plugin_III/game_III/CAutoPilot.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto 3) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto 3) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CAutoPilot.h" diff --git a/plugin_III/game_III/CAutoPilot.h b/plugin_III/game_III/CAutoPilot.h index 5a7644c9..3b815f09 100644 --- a/plugin_III/game_III/CAutoPilot.h +++ b/plugin_III/game_III/CAutoPilot.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto 3) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto 3) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CPathFind.h" #include "eCarMission.h" diff --git a/plugin_III/game_III/CControllerConfigManager.cpp b/plugin_III/game_III/CControllerConfigManager.cpp index 5a22b0fb..76fd4cc7 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 3612f92d..28ba0033 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 ce60b91e..1aab983f 100644 --- a/plugin_III/game_III/CControllerState.cpp +++ b/plugin_III/game_III/CControllerState.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto 3) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto 3) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CControllerState.h" diff --git a/plugin_III/game_III/CControllerState.h b/plugin_III/game_III/CControllerState.h index 48a05b78..b58793c8 100644 --- a/plugin_III/game_III/CControllerState.h +++ b/plugin_III/game_III/CControllerState.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto 3) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto 3) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" class CControllerState { diff --git a/plugin_III/game_III/CFileLoader.h b/plugin_III/game_III/CFileLoader.h index 81da9ccd..70dbfd04 100644 --- a/plugin_III/game_III/CFileLoader.h +++ b/plugin_III/game_III/CFileLoader.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto 3) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto 3) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "RenderWare.h" #include "CColModel.h" diff --git a/plugin_III/game_III/CFontDetails.cpp b/plugin_III/game_III/CFontDetails.cpp index ccc8a7e8..96b4f832 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 658a4c97..37bd166f 100644 --- a/plugin_III/game_III/CFontDetails.h +++ b/plugin_III/game_III/CFontDetails.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto 3) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto 3) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CRGBA.h" #include "CVector2D.h" diff --git a/plugin_III/game_III/CHud.cpp b/plugin_III/game_III/CHud.cpp index c822730d..9674d536 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 d605c677..44045ea3 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 b93cf4d7..fc10e2c2 100644 --- a/plugin_III/game_III/CKeyboardState.cpp +++ b/plugin_III/game_III/CKeyboardState.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto 3) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto 3) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CKeyboardState.h" diff --git a/plugin_III/game_III/CKeyboardState.h b/plugin_III/game_III/CKeyboardState.h index 8ba31ed0..bdc9d64e 100644 --- a/plugin_III/game_III/CKeyboardState.h +++ b/plugin_III/game_III/CKeyboardState.h @@ -1,13 +1,10 @@ - - /* -Plugin-SDK (Grand Theft Auto 3) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto 3) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" class CKeyboardState { diff --git a/plugin_III/game_III/CMenuManager.cpp b/plugin_III/game_III/CMenuManager.cpp index 5984e8ba..6a2a2140 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 24afd27c..be7fe1aa 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 23274dcb..30431273 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 b312afd9..8976d7cb 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 4c3b2756..9527f41c 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 663739bd..4c8334c0 100644 --- a/plugin_III/game_III/CPedType.h +++ b/plugin_III/game_III/CPedType.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto 3) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto 3) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" class CPedType { diff --git a/plugin_III/game_III/CPlayerInfo.cpp b/plugin_III/game_III/CPlayerInfo.cpp index ede5e8b1..06f080c8 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 2fc1e332..410b1060 100644 --- a/plugin_III/game_III/CPointLights.cpp +++ b/plugin_III/game_III/CPointLights.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto 3) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto 3) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CPointLights.h" diff --git a/plugin_III/game_III/CPointLights.h b/plugin_III/game_III/CPointLights.h index a00538f7..1ae2d039 100644 --- a/plugin_III/game_III/CPointLights.h +++ b/plugin_III/game_III/CPointLights.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto 3) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto 3) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" diff --git a/plugin_III/game_III/CRenderer.cpp b/plugin_III/game_III/CRenderer.cpp index b44ce7bd..1f5200d9 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 5b8bce52..6e0e087f 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 5ef4d401..d96a04ea 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 8612ec1e..be3b992b 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 3ca36002..434cc184 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 0c2894de..1c664784 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 1c97d483..bca6bab5 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 75a3083d..83631679 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 2f2d4417..cb48add8 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 0f8f3e58..c26263bf 100644 --- a/plugin_III/game_III/CWeaponEffects.h +++ b/plugin_III/game_III/CWeaponEffects.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto 3) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto 3) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" #include "CRGBA.h" diff --git a/plugin_III/game_III/CWeaponInfo.cpp b/plugin_III/game_III/CWeaponInfo.cpp index aad30a68..4743b997 100644 --- a/plugin_III/game_III/CWeaponInfo.cpp +++ b/plugin_III/game_III/CWeaponInfo.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto 3) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto 3) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CWeaponInfo.h" diff --git a/plugin_III/game_III/cAudioManager.cpp b/plugin_III/game_III/cAudioManager.cpp index 6469128e..3144e955 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 8d8b145b..9f2b52a5 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 85c54608..10db0c12 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 30000e8a..439a9975 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 6ae4dece..91d6edb6 100644 --- a/plugin_III/game_III/enums/eCoronaType.h +++ b/plugin_III/game_III/enums/eCoronaType.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto 3) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto 3) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_III/game_III/enums/eCrimeType.h b/plugin_III/game_III/enums/eCrimeType.h index 75f057ef..55049325 100644 --- a/plugin_III/game_III/enums/eCrimeType.h +++ b/plugin_III/game_III/enums/eCrimeType.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto 3) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto 3) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_III/game_III/enums/ePedModel.h b/plugin_III/game_III/enums/ePedModel.h index 89317d3e..568eb625 100644 --- a/plugin_III/game_III/enums/ePedModel.h +++ b/plugin_III/game_III/enums/ePedModel.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto 3) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto 3) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_III/game_III/enums/eSceneCommands.h b/plugin_III/game_III/enums/eSceneCommands.h index 09766737..418b9455 100644 --- a/plugin_III/game_III/enums/eSceneCommands.h +++ b/plugin_III/game_III/enums/eSceneCommands.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto 3) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto 3) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_III/game_III/enums/eWeaponModel.h b/plugin_III/game_III/enums/eWeaponModel.h index 3ea28ba7..ff5ee815 100644 --- a/plugin_III/game_III/enums/eWeaponModel.h +++ b/plugin_III/game_III/enums/eWeaponModel.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto 3) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto 3) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_III/game_III/enums/eWeaponType.h b/plugin_III/game_III/enums/eWeaponType.h index f4228924..ef7a76ca 100644 --- a/plugin_III/game_III/enums/eWeaponType.h +++ b/plugin_III/game_III/enums/eWeaponType.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto 3) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto 3) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_III/game_III/enums/eWeather.h b/plugin_III/game_III/enums/eWeather.h index 710720bc..24e6f2d4 100644 --- a/plugin_III/game_III/enums/eWeather.h +++ b/plugin_III/game_III/enums/eWeather.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto 3) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto 3) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_III/game_III/enums/eWheelModel.h b/plugin_III/game_III/enums/eWheelModel.h index c7e681de..ba52b4f5 100644 --- a/plugin_III/game_III/enums/eWheelModel.h +++ b/plugin_III/game_III/enums/eWheelModel.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto 3) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto 3) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_III/game_III/tTransmissionGear.h b/plugin_III/game_III/tTransmissionGear.h index fd9a405f..4f8a94aa 100644 --- a/plugin_III/game_III/tTransmissionGear.h +++ b/plugin_III/game_III/tTransmissionGear.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto 3) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto 3) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" struct tTransmissionGear { diff --git a/plugin_IV/game_IV/CCamScriptInstruction.cpp b/plugin_IV/game_IV/CCamScriptInstruction.cpp index 191578f9..da840a70 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 5fb6f8e9..7e7b90d3 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 bf4e5900..281d97d2 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 969b35ca..00880cd9 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 168290a5..c69cc8bc 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 0ade55f8..39d5753a 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 6f31128e..a60e3257 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 877d5a33..5ba6faf1 100644 --- a/plugin_sa/game_sa/CAEWeaponAudioEntity.cpp +++ b/plugin_sa/game_sa/CAEWeaponAudioEntity.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CAEWeaponAudioEntity.h" diff --git a/plugin_sa/game_sa/CAnimBlendAssocGroup.cpp b/plugin_sa/game_sa/CAnimBlendAssocGroup.cpp index 3338c491..a878cbe1 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 d5d8892d..e9901828 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 eb3c10b7..e81fa159 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 efb21190..12ab1f5c 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 44f9e1a2..3fc53de4 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 dc0e9516..eb88c452 100644 --- a/plugin_sa/game_sa/CCam.h +++ b/plugin_sa/game_sa/CCam.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "eCamMode.h" #include "CVector.h" diff --git a/plugin_sa/game_sa/CCamera.cpp b/plugin_sa/game_sa/CCamera.cpp index eddae10a..ac3c8fac 100644 --- a/plugin_sa/game_sa/CCamera.cpp +++ b/plugin_sa/game_sa/CCamera.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CCamera.h" diff --git a/plugin_sa/game_sa/CCamera.h b/plugin_sa/game_sa/CCamera.h index c2211bc3..2b02d021 100644 --- a/plugin_sa/game_sa/CCamera.h +++ b/plugin_sa/game_sa/CCamera.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CPlaceable.h" #include "CCam.h" diff --git a/plugin_sa/game_sa/CCarAI.cpp b/plugin_sa/game_sa/CCarAI.cpp index ad0b9f19..8cf59217 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 fe96922b..3ff4c06d 100644 --- a/plugin_sa/game_sa/CCarAI.h +++ b/plugin_sa/game_sa/CCarAI.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once #include "PluginBase.h" diff --git a/plugin_sa/game_sa/CCarGenerator.cpp b/plugin_sa/game_sa/CCarGenerator.cpp index 07adcc7a..df859e8f 100644 --- a/plugin_sa/game_sa/CCarGenerator.cpp +++ b/plugin_sa/game_sa/CCarGenerator.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CCarGenerator.h" diff --git a/plugin_sa/game_sa/CClothes.cpp b/plugin_sa/game_sa/CClothes.cpp index 657c099c..04995082 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 068f680a..08b0839d 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 b47d21b0..7953cfed 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 f4eaad1d..af57e11a 100644 --- a/plugin_sa/game_sa/CColourSet.h +++ b/plugin_sa/game_sa/CColourSet.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" class PLUGIN_API CColourSet { diff --git a/plugin_sa/game_sa/CCullZones.cpp b/plugin_sa/game_sa/CCullZones.cpp index 003f21a9..34bc2012 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 c9971030..e0844367 100644 --- a/plugin_sa/game_sa/CCustomCarEnvMapPipeline.cpp +++ b/plugin_sa/game_sa/CCustomCarEnvMapPipeline.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CCustomCarEnvMapPipeline.h" diff --git a/plugin_sa/game_sa/CExplosion.h b/plugin_sa/game_sa/CExplosion.h index 21066fc6..369bc5a8 100644 --- a/plugin_sa/game_sa/CExplosion.h +++ b/plugin_sa/game_sa/CExplosion.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" #include "CAEExplosionAudioEntity.h" diff --git a/plugin_sa/game_sa/CLoadingScreen.cpp b/plugin_sa/game_sa/CLoadingScreen.cpp index 4bbfff3a..04f552c1 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 fc1fb60c..2d9f403d 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 8f3c2d97..24e29b8a 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 993101c9..b118fb49 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 71acdd01..f5d3d29a 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 7b67b2d4..338b9939 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 ce918bf1..1fd4a5bb 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 f054ba17..37572527 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 bb3c5036..3997b489 100644 --- a/plugin_sa/game_sa/CPools.h +++ b/plugin_sa/game_sa/CPools.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CPool.h" #include "CCopPed.h" diff --git a/plugin_sa/game_sa/CPopCycle.cpp b/plugin_sa/game_sa/CPopCycle.cpp index d9271bb8..05cb2f00 100644 --- a/plugin_sa/game_sa/CPopCycle.cpp +++ b/plugin_sa/game_sa/CPopCycle.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CPopCycle.h" diff --git a/plugin_sa/game_sa/CPtrNode.h b/plugin_sa/game_sa/CPtrNode.h index 71452f32..3bfc1948 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 f8b4cb67..01acc853 100644 --- a/plugin_sa/game_sa/CRadar.h +++ b/plugin_sa/game_sa/CRadar.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" #include "CRGBA.h" diff --git a/plugin_sa/game_sa/CReplay.cpp b/plugin_sa/game_sa/CReplay.cpp index d539f374..84b1c999 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 f9bc8fdf..1ad0fe30 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 9a814558..744933f5 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 7636085f..f2a526a7 100644 --- a/plugin_sa/game_sa/CRunningScript.cpp +++ b/plugin_sa/game_sa/CRunningScript.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CRunningScript.h" diff --git a/plugin_sa/game_sa/CShopping.cpp b/plugin_sa/game_sa/CShopping.cpp index 816f0cc5..0fccc9ac 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 237ef2b3..84ac8f17 100644 --- a/plugin_sa/game_sa/CStuntJumpManager.cpp +++ b/plugin_sa/game_sa/CStuntJumpManager.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) Source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CStuntJumpManager.h" diff --git a/plugin_sa/game_sa/CTagManager.cpp b/plugin_sa/game_sa/CTagManager.cpp index 4a6c33de..522e1760 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 edfac2f9..09cb20e6 100644 --- a/plugin_sa/game_sa/CTaskComplexClimb.cpp +++ b/plugin_sa/game_sa/CTaskComplexClimb.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CTaskComplexClimb.h" diff --git a/plugin_sa/game_sa/CTaskComplexClimb.h b/plugin_sa/game_sa/CTaskComplexClimb.h index cd5ac537..a3c742e9 100644 --- a/plugin_sa/game_sa/CTaskComplexClimb.h +++ b/plugin_sa/game_sa/CTaskComplexClimb.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskComplexJump.h" diff --git a/plugin_sa/game_sa/CTaskComplexCopInCar.cpp b/plugin_sa/game_sa/CTaskComplexCopInCar.cpp index 2e4bdb2b..4bfec704 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 d93550d2..ead7b162 100644 --- a/plugin_sa/game_sa/CTaskComplexDie.cpp +++ b/plugin_sa/game_sa/CTaskComplexDie.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CTaskComplexDie.h" diff --git a/plugin_sa/game_sa/CTaskComplexDie.h b/plugin_sa/game_sa/CTaskComplexDie.h index b228e482..1761125e 100644 --- a/plugin_sa/game_sa/CTaskComplexDie.h +++ b/plugin_sa/game_sa/CTaskComplexDie.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskComplex.h" #include "eWeaponType.h" diff --git a/plugin_sa/game_sa/CTaskComplexDriveFireTruck.cpp b/plugin_sa/game_sa/CTaskComplexDriveFireTruck.cpp index c367ed9e..bb742db3 100644 --- a/plugin_sa/game_sa/CTaskComplexDriveFireTruck.cpp +++ b/plugin_sa/game_sa/CTaskComplexDriveFireTruck.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CTaskComplex.h" #include "CTaskComplexDriveFireTruck.h" diff --git a/plugin_sa/game_sa/CTaskComplexDriveFireTruck.h b/plugin_sa/game_sa/CTaskComplexDriveFireTruck.h index 72cbe95c..48d12567 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 de4c2abd..e6812f78 100644 --- a/plugin_sa/game_sa/CTaskComplexEnterBoatAsDriver.cpp +++ b/plugin_sa/game_sa/CTaskComplexEnterBoatAsDriver.cpp @@ -1,10 +1,9 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ - #include "CTaskComplexEnterBoatAsDriver.h" CTaskComplexEnterBoatAsDriver::CTaskComplexEnterBoatAsDriver(CVehicle* pTargetVehicle) : CTaskComplex(plugin::dummy) diff --git a/plugin_sa/game_sa/CTaskComplexEnterBoatAsDriver.h b/plugin_sa/game_sa/CTaskComplexEnterBoatAsDriver.h index 1b72bb9b..6ab80d7d 100644 --- a/plugin_sa/game_sa/CTaskComplexEnterBoatAsDriver.h +++ b/plugin_sa/game_sa/CTaskComplexEnterBoatAsDriver.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskComplex.h" #include "CVehicle.h" diff --git a/plugin_sa/game_sa/CTaskComplexEnterCar.cpp b/plugin_sa/game_sa/CTaskComplexEnterCar.cpp index 45fde353..0f9fd63b 100644 --- a/plugin_sa/game_sa/CTaskComplexEnterCar.cpp +++ b/plugin_sa/game_sa/CTaskComplexEnterCar.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CTaskComplexEnterCar.h" diff --git a/plugin_sa/game_sa/CTaskComplexEnterCar.h b/plugin_sa/game_sa/CTaskComplexEnterCar.h index 33f52c60..30228751 100644 --- a/plugin_sa/game_sa/CTaskComplexEnterCar.h +++ b/plugin_sa/game_sa/CTaskComplexEnterCar.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskComplex.h" #include "CPathFind.h" diff --git a/plugin_sa/game_sa/CTaskComplexEnterCarAsDriver.cpp b/plugin_sa/game_sa/CTaskComplexEnterCarAsDriver.cpp index b2cf8e2e..83fdf6ae 100644 --- a/plugin_sa/game_sa/CTaskComplexEnterCarAsDriver.cpp +++ b/plugin_sa/game_sa/CTaskComplexEnterCarAsDriver.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CTaskComplexEnterCarAsDriver.h" diff --git a/plugin_sa/game_sa/CTaskComplexEnterCarAsDriver.h b/plugin_sa/game_sa/CTaskComplexEnterCarAsDriver.h index f9fdc3a6..37f1f23b 100644 --- a/plugin_sa/game_sa/CTaskComplexEnterCarAsDriver.h +++ b/plugin_sa/game_sa/CTaskComplexEnterCarAsDriver.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskComplexEnterCar.h" diff --git a/plugin_sa/game_sa/CTaskComplexEnterCarAsPassenger.cpp b/plugin_sa/game_sa/CTaskComplexEnterCarAsPassenger.cpp index 6c622073..c1b4a654 100644 --- a/plugin_sa/game_sa/CTaskComplexEnterCarAsPassenger.cpp +++ b/plugin_sa/game_sa/CTaskComplexEnterCarAsPassenger.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CTaskComplexEnterCarAsPassenger.h" diff --git a/plugin_sa/game_sa/CTaskComplexEnterCarAsPassenger.h b/plugin_sa/game_sa/CTaskComplexEnterCarAsPassenger.h index 6cff3a1d..0525283b 100644 --- a/plugin_sa/game_sa/CTaskComplexEnterCarAsPassenger.h +++ b/plugin_sa/game_sa/CTaskComplexEnterCarAsPassenger.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskComplexEnterCar.h" diff --git a/plugin_sa/game_sa/CTaskComplexFacial.cpp b/plugin_sa/game_sa/CTaskComplexFacial.cpp index ddab962f..6c5cb2f9 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 e514c850..4bb4f92a 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 a038dae9..afe799ea 100644 --- a/plugin_sa/game_sa/CTaskComplexJump.cpp +++ b/plugin_sa/game_sa/CTaskComplexJump.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CTaskComplexJump.h" diff --git a/plugin_sa/game_sa/CTaskComplexJump.h b/plugin_sa/game_sa/CTaskComplexJump.h index bb97e93b..8822c084 100644 --- a/plugin_sa/game_sa/CTaskComplexJump.h +++ b/plugin_sa/game_sa/CTaskComplexJump.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskComplex.h" diff --git a/plugin_sa/game_sa/CTaskComplexKillPedFromBoat.cpp b/plugin_sa/game_sa/CTaskComplexKillPedFromBoat.cpp index 2057a1a1..5160c4e6 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 28a3883f..021440dd 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 0f07ec79..08a875c9 100644 --- a/plugin_sa/game_sa/CTaskComplexLeaveCar.cpp +++ b/plugin_sa/game_sa/CTaskComplexLeaveCar.cpp @@ -1,10 +1,9 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ - #include "CTaskComplexLeaveCar.h" CTaskComplexLeaveCar::CTaskComplexLeaveCar(CVehicle* pTargetVehicle, int nTargetDoor, int nDelayTime, bool bSensibleLeaveCar, bool bForceGetOut) : CTaskComplex(plugin::dummy) diff --git a/plugin_sa/game_sa/CTaskComplexLeaveCar.h b/plugin_sa/game_sa/CTaskComplexLeaveCar.h index 2da6d30d..503fb303 100644 --- a/plugin_sa/game_sa/CTaskComplexLeaveCar.h +++ b/plugin_sa/game_sa/CTaskComplexLeaveCar.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskComplex.h" #include "CVehicle.h" diff --git a/plugin_sa/game_sa/CTaskComplexMedicTreatInjuredPed.cpp b/plugin_sa/game_sa/CTaskComplexMedicTreatInjuredPed.cpp index 40f4606c..e9ea75e1 100644 --- a/plugin_sa/game_sa/CTaskComplexMedicTreatInjuredPed.cpp +++ b/plugin_sa/game_sa/CTaskComplexMedicTreatInjuredPed.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CTaskComplex.h" #include "CTaskComplexMedicTreatInjuredPed.h" diff --git a/plugin_sa/game_sa/CTaskComplexMedicTreatInjuredPed.h b/plugin_sa/game_sa/CTaskComplexMedicTreatInjuredPed.h index 8dec57f8..3afb43fc 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 d6402fd0..de5b3954 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 43f55afd..86ecfa9b 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 b04448af..44f26e0d 100644 --- a/plugin_sa/game_sa/CTaskComplexSunbathe.cpp +++ b/plugin_sa/game_sa/CTaskComplexSunbathe.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CTaskComplexSunbathe.h" diff --git a/plugin_sa/game_sa/CTaskComplexSunbathe.h b/plugin_sa/game_sa/CTaskComplexSunbathe.h index 3c1590d4..98f8c506 100644 --- a/plugin_sa/game_sa/CTaskComplexSunbathe.h +++ b/plugin_sa/game_sa/CTaskComplexSunbathe.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskComplex.h" #include "CTaskTimer.h" diff --git a/plugin_sa/game_sa/CTaskComplexUseMobilePhone.cpp b/plugin_sa/game_sa/CTaskComplexUseMobilePhone.cpp index 28afbb46..289774d9 100644 --- a/plugin_sa/game_sa/CTaskComplexUseMobilePhone.cpp +++ b/plugin_sa/game_sa/CTaskComplexUseMobilePhone.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CTaskComplexUseMobilePhone.h" diff --git a/plugin_sa/game_sa/CTaskComplexUseMobilePhone.h b/plugin_sa/game_sa/CTaskComplexUseMobilePhone.h index a01916c7..77999850 100644 --- a/plugin_sa/game_sa/CTaskComplexUseMobilePhone.h +++ b/plugin_sa/game_sa/CTaskComplexUseMobilePhone.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskComplex.h" #include "CTaskTimer.h" diff --git a/plugin_sa/game_sa/CTaskSimpleCarSetPedInAsPassenger.cpp b/plugin_sa/game_sa/CTaskSimpleCarSetPedInAsPassenger.cpp index 0722b94f..c738cabd 100644 --- a/plugin_sa/game_sa/CTaskSimpleCarSetPedInAsPassenger.cpp +++ b/plugin_sa/game_sa/CTaskSimpleCarSetPedInAsPassenger.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CTaskSimpleCarSetPedInAsPassenger.h" diff --git a/plugin_sa/game_sa/CTaskSimpleCarSetPedOut.cpp b/plugin_sa/game_sa/CTaskSimpleCarSetPedOut.cpp index a8f0f3ab..6afc7382 100644 --- a/plugin_sa/game_sa/CTaskSimpleCarSetPedOut.cpp +++ b/plugin_sa/game_sa/CTaskSimpleCarSetPedOut.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CTaskSimpleCarSetPedOut.h" diff --git a/plugin_sa/game_sa/CTaskSimpleChoking.cpp b/plugin_sa/game_sa/CTaskSimpleChoking.cpp index 07368846..31efb820 100644 --- a/plugin_sa/game_sa/CTaskSimpleChoking.cpp +++ b/plugin_sa/game_sa/CTaskSimpleChoking.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CTaskSimpleChoking.h" diff --git a/plugin_sa/game_sa/CTaskSimpleChoking.h b/plugin_sa/game_sa/CTaskSimpleChoking.h index c5d499c0..43365319 100644 --- a/plugin_sa/game_sa/CTaskSimpleChoking.h +++ b/plugin_sa/game_sa/CTaskSimpleChoking.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskSimple.h" #include "CAnimBlendAssociation.h" diff --git a/plugin_sa/game_sa/CTaskSimpleFacial.cpp b/plugin_sa/game_sa/CTaskSimpleFacial.cpp index 906b7416..6a5d040e 100644 --- a/plugin_sa/game_sa/CTaskSimpleFacial.cpp +++ b/plugin_sa/game_sa/CTaskSimpleFacial.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CTaskSimpleFacial.h" diff --git a/plugin_sa/game_sa/CTaskSimpleFacial.h b/plugin_sa/game_sa/CTaskSimpleFacial.h index 883878f2..8aef4d44 100644 --- a/plugin_sa/game_sa/CTaskSimpleFacial.h +++ b/plugin_sa/game_sa/CTaskSimpleFacial.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskSimple.h" #include "CTaskTimer.h" diff --git a/plugin_sa/game_sa/CTaskSimpleGangDriveBy.cpp b/plugin_sa/game_sa/CTaskSimpleGangDriveBy.cpp index 8176f4b5..0f78b091 100644 --- a/plugin_sa/game_sa/CTaskSimpleGangDriveBy.cpp +++ b/plugin_sa/game_sa/CTaskSimpleGangDriveBy.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CTaskSimpleGangDriveBy.h" diff --git a/plugin_sa/game_sa/CTaskSimpleGangDriveBy.h b/plugin_sa/game_sa/CTaskSimpleGangDriveBy.h index cc79fc61..864f7614 100644 --- a/plugin_sa/game_sa/CTaskSimpleGangDriveBy.h +++ b/plugin_sa/game_sa/CTaskSimpleGangDriveBy.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskSimple.h" #include "CAnimBlendAssociation.h" diff --git a/plugin_sa/game_sa/CTaskSimpleIKChain.cpp b/plugin_sa/game_sa/CTaskSimpleIKChain.cpp index abf29125..b3de1beb 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 bb8cdb9b..9858912f 100644 --- a/plugin_sa/game_sa/CTaskSimpleIKChain.h +++ b/plugin_sa/game_sa/CTaskSimpleIKChain.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskSimple.h" #include "CAnimBlendAssociation.h" diff --git a/plugin_sa/game_sa/CTaskSimpleIKLookAt.cpp b/plugin_sa/game_sa/CTaskSimpleIKLookAt.cpp index 86def4b5..dfe73418 100644 --- a/plugin_sa/game_sa/CTaskSimpleIKLookAt.cpp +++ b/plugin_sa/game_sa/CTaskSimpleIKLookAt.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CTaskSimpleIKLookAt.h" diff --git a/plugin_sa/game_sa/CTaskSimpleIKLookAt.h b/plugin_sa/game_sa/CTaskSimpleIKLookAt.h index 26bcb1c8..5b47310f 100644 --- a/plugin_sa/game_sa/CTaskSimpleIKLookAt.h +++ b/plugin_sa/game_sa/CTaskSimpleIKLookAt.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskSimple.h" #include "CAnimBlendAssociation.h" diff --git a/plugin_sa/game_sa/CTaskSimpleIKManager.cpp b/plugin_sa/game_sa/CTaskSimpleIKManager.cpp index 38e3d9d5..4d8ce12d 100644 --- a/plugin_sa/game_sa/CTaskSimpleIKManager.cpp +++ b/plugin_sa/game_sa/CTaskSimpleIKManager.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CTaskSimpleIKManager.h" diff --git a/plugin_sa/game_sa/CTaskSimpleIKManager.h b/plugin_sa/game_sa/CTaskSimpleIKManager.h index 114c4b80..de2bcef4 100644 --- a/plugin_sa/game_sa/CTaskSimpleIKManager.h +++ b/plugin_sa/game_sa/CTaskSimpleIKManager.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskSimpleIKChain.h" diff --git a/plugin_sa/game_sa/CTaskSimplePlayerOnFoot.cpp b/plugin_sa/game_sa/CTaskSimplePlayerOnFoot.cpp index 0ce0c356..28e170fc 100644 --- a/plugin_sa/game_sa/CTaskSimplePlayerOnFoot.cpp +++ b/plugin_sa/game_sa/CTaskSimplePlayerOnFoot.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CTaskSimplePlayerOnFoot.h" diff --git a/plugin_sa/game_sa/CTaskSimplePlayerOnFoot.h b/plugin_sa/game_sa/CTaskSimplePlayerOnFoot.h index d1785aac..7632b6e5 100644 --- a/plugin_sa/game_sa/CTaskSimplePlayerOnFoot.h +++ b/plugin_sa/game_sa/CTaskSimplePlayerOnFoot.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskSimple.h" #include "CAnimBlendAssociation.h" diff --git a/plugin_sa/game_sa/CTaskSimpleRunAnim.cpp b/plugin_sa/game_sa/CTaskSimpleRunAnim.cpp index 2808ca95..d90e8aed 100644 --- a/plugin_sa/game_sa/CTaskSimpleRunAnim.cpp +++ b/plugin_sa/game_sa/CTaskSimpleRunAnim.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CTaskSimpleRunAnim.h" diff --git a/plugin_sa/game_sa/CTaskSimpleRunAnim.h b/plugin_sa/game_sa/CTaskSimpleRunAnim.h index c10ba2ea..b96295f4 100644 --- a/plugin_sa/game_sa/CTaskSimpleRunAnim.h +++ b/plugin_sa/game_sa/CTaskSimpleRunAnim.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskSimpleAnim.h" #include "CAnimBlendAssociation.h" diff --git a/plugin_sa/game_sa/CTaskSimpleRunNamedAnim.cpp b/plugin_sa/game_sa/CTaskSimpleRunNamedAnim.cpp index 3fcc2651..e80000b9 100644 --- a/plugin_sa/game_sa/CTaskSimpleRunNamedAnim.cpp +++ b/plugin_sa/game_sa/CTaskSimpleRunNamedAnim.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CTaskSimpleRunNamedAnim.h" diff --git a/plugin_sa/game_sa/CTaskSimpleStealthKill.cpp b/plugin_sa/game_sa/CTaskSimpleStealthKill.cpp index 3bc19dd3..da916e87 100644 --- a/plugin_sa/game_sa/CTaskSimpleStealthKill.cpp +++ b/plugin_sa/game_sa/CTaskSimpleStealthKill.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CTaskSimpleStealthKill.h" diff --git a/plugin_sa/game_sa/CTaskSimpleStealthKill.h b/plugin_sa/game_sa/CTaskSimpleStealthKill.h index 66ef4c88..cbb95357 100644 --- a/plugin_sa/game_sa/CTaskSimpleStealthKill.h +++ b/plugin_sa/game_sa/CTaskSimpleStealthKill.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskSimple.h" #include "CPed.h" diff --git a/plugin_sa/game_sa/CTaskSimpleTriggerLookAt.cpp b/plugin_sa/game_sa/CTaskSimpleTriggerLookAt.cpp index 4129e514..a2597c0f 100644 --- a/plugin_sa/game_sa/CTaskSimpleTriggerLookAt.cpp +++ b/plugin_sa/game_sa/CTaskSimpleTriggerLookAt.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CTaskSimpleTriggerLookAt.h" diff --git a/plugin_sa/game_sa/CTaskSimpleTriggerLookAt.h b/plugin_sa/game_sa/CTaskSimpleTriggerLookAt.h index fa5c6a66..3bda88d0 100644 --- a/plugin_sa/game_sa/CTaskSimpleTriggerLookAt.h +++ b/plugin_sa/game_sa/CTaskSimpleTriggerLookAt.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CTaskSimple.h" #include "CAnimBlendAssociation.h" diff --git a/plugin_sa/game_sa/CTaskSimpleUseGun.h b/plugin_sa/game_sa/CTaskSimpleUseGun.h index 0c5f144d..6f64910b 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 17dff88b..a3b94419 100644 --- a/plugin_sa/game_sa/CTheCarGenerators.cpp +++ b/plugin_sa/game_sa/CTheCarGenerators.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CTheCarGenerators.h" diff --git a/plugin_sa/game_sa/CTheCarGenerators.h b/plugin_sa/game_sa/CTheCarGenerators.h index 2b90560e..1b526859 100644 --- a/plugin_sa/game_sa/CTheCarGenerators.h +++ b/plugin_sa/game_sa/CTheCarGenerators.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CSpecialPlateHandler.h" #include "CCarGenerator.h" diff --git a/plugin_sa/game_sa/CTheScripts.cpp b/plugin_sa/game_sa/CTheScripts.cpp index e0719508..fe909548 100644 --- a/plugin_sa/game_sa/CTheScripts.cpp +++ b/plugin_sa/game_sa/CTheScripts.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CTheScripts.h" diff --git a/plugin_sa/game_sa/CTimeCycle.h b/plugin_sa/game_sa/CTimeCycle.h index d9a31b03..f0d28405 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 4513f0c7..b31dec31 100644 --- a/plugin_sa/game_sa/CTimeCycleBox.h +++ b/plugin_sa/game_sa/CTimeCycleBox.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CBox.h" diff --git a/plugin_sa/game_sa/CWorld.cpp b/plugin_sa/game_sa/CWorld.cpp index 9fd50947..9921edef 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 52dda8e4..e9bb08b2 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 eb728c3e..21d7def6 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 ea6d347c..61d16365 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 4401b111..dda06a67 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 b6470002..0724ccd9 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 08449b09..c35ec1c6 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 f5366321..5cfb96b6 100644 --- a/plugin_sa/game_sa/tHandlingData.h +++ b/plugin_sa/game_sa/tHandlingData.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto San Andreas) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto San Andreas) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "cTransmission.h" #include "CVector.h" diff --git a/plugin_vc/game_vc/CAutomobile.cpp b/plugin_vc/game_vc/CAutomobile.cpp index 785c2330..a719a064 100644 --- a/plugin_vc/game_vc/CAutomobile.cpp +++ b/plugin_vc/game_vc/CAutomobile.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CAutomobile.h" diff --git a/plugin_vc/game_vc/CAutomobile.h b/plugin_vc/game_vc/CAutomobile.h index 1a427f1f..7fd8dd55 100644 --- a/plugin_vc/game_vc/CAutomobile.h +++ b/plugin_vc/game_vc/CAutomobile.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVehicle.h" #include "CDoor.h" diff --git a/plugin_vc/game_vc/CBike.cpp b/plugin_vc/game_vc/CBike.cpp index 390120e2..e5de6369 100644 --- a/plugin_vc/game_vc/CBike.cpp +++ b/plugin_vc/game_vc/CBike.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CBike.h" diff --git a/plugin_vc/game_vc/CBike.h b/plugin_vc/game_vc/CBike.h index 7219e31e..d367fc80 100644 --- a/plugin_vc/game_vc/CBike.h +++ b/plugin_vc/game_vc/CBike.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once #include "PluginBase.h" diff --git a/plugin_vc/game_vc/CBoat.cpp b/plugin_vc/game_vc/CBoat.cpp index 29c7c9e9..a4bdb802 100644 --- a/plugin_vc/game_vc/CBoat.cpp +++ b/plugin_vc/game_vc/CBoat.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CBoat.h" diff --git a/plugin_vc/game_vc/CBoat.h b/plugin_vc/game_vc/CBoat.h index ec40687b..ee649011 100644 --- a/plugin_vc/game_vc/CBoat.h +++ b/plugin_vc/game_vc/CBoat.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once #include "PluginBase.h" diff --git a/plugin_vc/game_vc/CBox.cpp b/plugin_vc/game_vc/CBox.cpp index 9b8f4370..6f2173e5 100644 --- a/plugin_vc/game_vc/CBox.cpp +++ b/plugin_vc/game_vc/CBox.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CBox.h" diff --git a/plugin_vc/game_vc/CBox.h b/plugin_vc/game_vc/CBox.h index 4b38b09d..21afe810 100644 --- a/plugin_vc/game_vc/CBox.h +++ b/plugin_vc/game_vc/CBox.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" diff --git a/plugin_vc/game_vc/CCarCtrl.cpp b/plugin_vc/game_vc/CCarCtrl.cpp index 3be9a8f9..f64fdcb3 100644 --- a/plugin_vc/game_vc/CCarCtrl.cpp +++ b/plugin_vc/game_vc/CCarCtrl.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CCarCtrl.h" diff --git a/plugin_vc/game_vc/CCarCtrl.h b/plugin_vc/game_vc/CCarCtrl.h index 25e2d4df..dcff1337 100644 --- a/plugin_vc/game_vc/CCarCtrl.h +++ b/plugin_vc/game_vc/CCarCtrl.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once #include "PluginBase.h" diff --git a/plugin_vc/game_vc/CCarGenerator.cpp b/plugin_vc/game_vc/CCarGenerator.cpp index 0a4194ad..5365d15d 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 99f2b2a8..467c5478 100644 --- a/plugin_vc/game_vc/CCarGenerator.h +++ b/plugin_vc/game_vc/CCarGenerator.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once #include "PluginBase.h" diff --git a/plugin_vc/game_vc/CCivilianPed.cpp b/plugin_vc/game_vc/CCivilianPed.cpp index 208b6dce..aa55f65f 100644 --- a/plugin_vc/game_vc/CCivilianPed.cpp +++ b/plugin_vc/game_vc/CCivilianPed.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CCivilianPed.h" diff --git a/plugin_vc/game_vc/CCivilianPed.h b/plugin_vc/game_vc/CCivilianPed.h index c608e170..d44ffb03 100644 --- a/plugin_vc/game_vc/CCivilianPed.h +++ b/plugin_vc/game_vc/CCivilianPed.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CPed.h" #include "ePedType.h" diff --git a/plugin_vc/game_vc/CClouds.cpp b/plugin_vc/game_vc/CClouds.cpp index 1f57e750..9e51072d 100644 --- a/plugin_vc/game_vc/CClouds.cpp +++ b/plugin_vc/game_vc/CClouds.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CClouds.h" diff --git a/plugin_vc/game_vc/CClouds.h b/plugin_vc/game_vc/CClouds.h index ca8eea25..d2be54de 100644 --- a/plugin_vc/game_vc/CClouds.h +++ b/plugin_vc/game_vc/CClouds.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once #include "PluginBase.h" diff --git a/plugin_vc/game_vc/CClumpModelInfo.cpp b/plugin_vc/game_vc/CClumpModelInfo.cpp index b179a22c..214f3051 100644 --- a/plugin_vc/game_vc/CClumpModelInfo.cpp +++ b/plugin_vc/game_vc/CClumpModelInfo.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CClumpModelInfo.h" diff --git a/plugin_vc/game_vc/CClumpModelInfo.h b/plugin_vc/game_vc/CClumpModelInfo.h index 430ba35d..7394f2a8 100644 --- a/plugin_vc/game_vc/CClumpModelInfo.h +++ b/plugin_vc/game_vc/CClumpModelInfo.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CBaseModelInfo.h" #include "RenderWare.h" diff --git a/plugin_vc/game_vc/CColBox.cpp b/plugin_vc/game_vc/CColBox.cpp index c6a2d85b..7ae100a8 100644 --- a/plugin_vc/game_vc/CColBox.cpp +++ b/plugin_vc/game_vc/CColBox.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CColBox.h" diff --git a/plugin_vc/game_vc/CColBox.h b/plugin_vc/game_vc/CColBox.h index 4d62d9c2..67cc54a8 100644 --- a/plugin_vc/game_vc/CColBox.h +++ b/plugin_vc/game_vc/CColBox.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CBox.h" diff --git a/plugin_vc/game_vc/CColLine.cpp b/plugin_vc/game_vc/CColLine.cpp index 97d7b67e..67e6c919 100644 --- a/plugin_vc/game_vc/CColLine.cpp +++ b/plugin_vc/game_vc/CColLine.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CColLine.h" diff --git a/plugin_vc/game_vc/CColLine.h b/plugin_vc/game_vc/CColLine.h index 1cde3774..2f02ab8b 100644 --- a/plugin_vc/game_vc/CColLine.h +++ b/plugin_vc/game_vc/CColLine.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" diff --git a/plugin_vc/game_vc/CColModel.cpp b/plugin_vc/game_vc/CColModel.cpp index 7e0e8e28..a5f63b9f 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 17b38021..bc8d65b3 100644 --- a/plugin_vc/game_vc/CColModel.h +++ b/plugin_vc/game_vc/CColModel.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_vc/game_vc/CColSphere.cpp b/plugin_vc/game_vc/CColSphere.cpp index 53652200..a2e3fc9c 100644 --- a/plugin_vc/game_vc/CColSphere.cpp +++ b/plugin_vc/game_vc/CColSphere.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CColSphere.h" diff --git a/plugin_vc/game_vc/CColSphere.h b/plugin_vc/game_vc/CColSphere.h index 56ec54e6..59bad58d 100644 --- a/plugin_vc/game_vc/CColSphere.h +++ b/plugin_vc/game_vc/CColSphere.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CSphere.h" diff --git a/plugin_vc/game_vc/CCopPed.cpp b/plugin_vc/game_vc/CCopPed.cpp index 9e48476d..c990b3bc 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 77b43ffb..da424928 100644 --- a/plugin_vc/game_vc/CCopPed.h +++ b/plugin_vc/game_vc/CCopPed.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CPed.h" #include "eCopType.h" diff --git a/plugin_vc/game_vc/CCoronas.cpp b/plugin_vc/game_vc/CCoronas.cpp index 1ebec14b..450c704b 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 3f3150e5..5850305d 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 b3376502..6b9e8c9a 100644 --- a/plugin_vc/game_vc/CDamageManager.cpp +++ b/plugin_vc/game_vc/CDamageManager.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CDamageManager.h" diff --git a/plugin_vc/game_vc/CDamageManager.h b/plugin_vc/game_vc/CDamageManager.h index 0b8c882f..c0150bbd 100644 --- a/plugin_vc/game_vc/CDamageManager.h +++ b/plugin_vc/game_vc/CDamageManager.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once #include "PluginBase.h" diff --git a/plugin_vc/game_vc/CDarkel.cpp b/plugin_vc/game_vc/CDarkel.cpp index f92d0b62..758ae554 100644 --- a/plugin_vc/game_vc/CDarkel.cpp +++ b/plugin_vc/game_vc/CDarkel.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CDarkel.h" diff --git a/plugin_vc/game_vc/CDarkel.h b/plugin_vc/game_vc/CDarkel.h index f3e1652b..cdb990fa 100644 --- a/plugin_vc/game_vc/CDarkel.h +++ b/plugin_vc/game_vc/CDarkel.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once #include "PluginBase.h" diff --git a/plugin_vc/game_vc/CDoor.cpp b/plugin_vc/game_vc/CDoor.cpp index 60b9a9ed..92d3bac2 100644 --- a/plugin_vc/game_vc/CDoor.cpp +++ b/plugin_vc/game_vc/CDoor.cpp @@ -1,7 +1,7 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CDoor.h" \ No newline at end of file diff --git a/plugin_vc/game_vc/CDoor.h b/plugin_vc/game_vc/CDoor.h index b55c01c4..b7211d0f 100644 --- a/plugin_vc/game_vc/CDoor.h +++ b/plugin_vc/game_vc/CDoor.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" diff --git a/plugin_vc/game_vc/CDraw.cpp b/plugin_vc/game_vc/CDraw.cpp index cf988974..c097ed57 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 bca4fce8..2f3e285b 100644 --- a/plugin_vc/game_vc/CEmergencyPed.cpp +++ b/plugin_vc/game_vc/CEmergencyPed.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CEmergencyPed.h" diff --git a/plugin_vc/game_vc/CEmergencyPed.h b/plugin_vc/game_vc/CEmergencyPed.h index 8da2951e..7e7d491d 100644 --- a/plugin_vc/game_vc/CEmergencyPed.h +++ b/plugin_vc/game_vc/CEmergencyPed.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CPed.h" diff --git a/plugin_vc/game_vc/CEntity.cpp b/plugin_vc/game_vc/CEntity.cpp index b78c5151..87a5e593 100644 --- a/plugin_vc/game_vc/CEntity.cpp +++ b/plugin_vc/game_vc/CEntity.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CEntity.h" diff --git a/plugin_vc/game_vc/CEscalators.cpp b/plugin_vc/game_vc/CEscalators.cpp index ce6a6fc6..c468a52f 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 560e8e0b..9647b515 100644 --- a/plugin_vc/game_vc/CEscalators.h +++ b/plugin_vc/game_vc/CEscalators.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once #include "PluginBase.h" diff --git a/plugin_vc/game_vc/CGangs.cpp b/plugin_vc/game_vc/CGangs.cpp index 378825da..2c488c5c 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 bc5aacec..eb2d52cb 100644 --- a/plugin_vc/game_vc/CGangs.h +++ b/plugin_vc/game_vc/CGangs.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CPed.h" #include "CObject.h" diff --git a/plugin_vc/game_vc/CGarage.h b/plugin_vc/game_vc/CGarage.h index 8aabf39c..08504da9 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 1a752e5e..657c4d19 100644 --- a/plugin_vc/game_vc/CHeli.cpp +++ b/plugin_vc/game_vc/CHeli.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CHeli.h" diff --git a/plugin_vc/game_vc/CHeli.h b/plugin_vc/game_vc/CHeli.h index 3fbc8215..72bf40ef 100644 --- a/plugin_vc/game_vc/CHeli.h +++ b/plugin_vc/game_vc/CHeli.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVehicle.h" #include "CObject.h" diff --git a/plugin_vc/game_vc/CIniFile.cpp b/plugin_vc/game_vc/CIniFile.cpp index caca2ab6..640da875 100644 --- a/plugin_vc/game_vc/CIniFile.cpp +++ b/plugin_vc/game_vc/CIniFile.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CIniFile.h" diff --git a/plugin_vc/game_vc/CIniFile.h b/plugin_vc/game_vc/CIniFile.h index 7e5845b6..f1792f7d 100644 --- a/plugin_vc/game_vc/CIniFile.h +++ b/plugin_vc/game_vc/CIniFile.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" class CIniFile { diff --git a/plugin_vc/game_vc/CMatrix.h b/plugin_vc/game_vc/CMatrix.h index 615a1428..f8192437 100644 --- a/plugin_vc/game_vc/CMatrix.h +++ b/plugin_vc/game_vc/CMatrix.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_vc/game_vc/CModelInfo.cpp b/plugin_vc/game_vc/CModelInfo.cpp index b6e6f442..4868bfec 100644 --- a/plugin_vc/game_vc/CModelInfo.cpp +++ b/plugin_vc/game_vc/CModelInfo.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CModelInfo.h" diff --git a/plugin_vc/game_vc/CMovie.cpp b/plugin_vc/game_vc/CMovie.cpp index 8348488a..760025ce 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 e1bf6c1e..17b6ff33 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 07f9f3bc..64c7b47f 100644 --- a/plugin_vc/game_vc/COnscreenTimer.h +++ b/plugin_vc/game_vc/COnscreenTimer.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once #include "PluginBase.h" diff --git a/plugin_vc/game_vc/CPedModelInfo.cpp b/plugin_vc/game_vc/CPedModelInfo.cpp index 780c8c77..716aed42 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 8b63f4b3..2fb975e3 100644 --- a/plugin_vc/game_vc/CPedModelInfo.h +++ b/plugin_vc/game_vc/CPedModelInfo.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once #include "PluginBase.h" diff --git a/plugin_vc/game_vc/CPedPlacement.cpp b/plugin_vc/game_vc/CPedPlacement.cpp index 7baee7cf..ca19f198 100644 --- a/plugin_vc/game_vc/CPedPlacement.cpp +++ b/plugin_vc/game_vc/CPedPlacement.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CPedPlacement.h" diff --git a/plugin_vc/game_vc/CPedPlacement.h b/plugin_vc/game_vc/CPedPlacement.h index 6fe29c98..cabb73d7 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 35c415ca..35646cc3 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 96329ed4..145ff60a 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 bc4fb8e3..0816ae3c 100644 --- a/plugin_vc/game_vc/CPickups.cpp +++ b/plugin_vc/game_vc/CPickups.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CPickups.h" diff --git a/plugin_vc/game_vc/CPickups.h b/plugin_vc/game_vc/CPickups.h index a1f682c5..9871a453 100644 --- a/plugin_vc/game_vc/CPickups.h +++ b/plugin_vc/game_vc/CPickups.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once #include "PluginBase.h" diff --git a/plugin_vc/game_vc/CPlane.cpp b/plugin_vc/game_vc/CPlane.cpp index 3b691acd..fb8ab78b 100644 --- a/plugin_vc/game_vc/CPlane.cpp +++ b/plugin_vc/game_vc/CPlane.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CPlane.h" diff --git a/plugin_vc/game_vc/CPlane.h b/plugin_vc/game_vc/CPlane.h index b8c07aec..04b6eed8 100644 --- a/plugin_vc/game_vc/CPlane.h +++ b/plugin_vc/game_vc/CPlane.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once #include "PluginBase.h" diff --git a/plugin_vc/game_vc/CPlayerInfo.cpp b/plugin_vc/game_vc/CPlayerInfo.cpp index 967e6fa7..3fb12de8 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 711ebc37..17b88976 100644 --- a/plugin_vc/game_vc/CPlayerInfo.h +++ b/plugin_vc/game_vc/CPlayerInfo.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once #include "PluginBase.h" diff --git a/plugin_vc/game_vc/CPlayerPed.cpp b/plugin_vc/game_vc/CPlayerPed.cpp index 068dae9f..b165a3a0 100644 --- a/plugin_vc/game_vc/CPlayerPed.cpp +++ b/plugin_vc/game_vc/CPlayerPed.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CPlayerPed.h" diff --git a/plugin_vc/game_vc/CPlayerPed.h b/plugin_vc/game_vc/CPlayerPed.h index 798e7f36..ff2d37ea 100644 --- a/plugin_vc/game_vc/CPlayerPed.h +++ b/plugin_vc/game_vc/CPlayerPed.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CPed.h" #include "eWeaponType.h" diff --git a/plugin_vc/game_vc/CPopulation.cpp b/plugin_vc/game_vc/CPopulation.cpp index 9388ee0a..1e9bdaa9 100644 --- a/plugin_vc/game_vc/CPopulation.cpp +++ b/plugin_vc/game_vc/CPopulation.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CPopulation.h" diff --git a/plugin_vc/game_vc/CPopulation.h b/plugin_vc/game_vc/CPopulation.h index f38f1bda..7c0cea8a 100644 --- a/plugin_vc/game_vc/CPopulation.h +++ b/plugin_vc/game_vc/CPopulation.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once #include "PluginBase.h" diff --git a/plugin_vc/game_vc/CProjectile.cpp b/plugin_vc/game_vc/CProjectile.cpp index 0db3ee15..526fc8bd 100644 --- a/plugin_vc/game_vc/CProjectile.cpp +++ b/plugin_vc/game_vc/CProjectile.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CProjectile.h" diff --git a/plugin_vc/game_vc/CProjectile.h b/plugin_vc/game_vc/CProjectile.h index b4090c60..ec28635a 100644 --- a/plugin_vc/game_vc/CProjectile.h +++ b/plugin_vc/game_vc/CProjectile.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CObject.h" diff --git a/plugin_vc/game_vc/CProjectileInfo.cpp b/plugin_vc/game_vc/CProjectileInfo.cpp index c193680a..caffbaff 100644 --- a/plugin_vc/game_vc/CProjectileInfo.cpp +++ b/plugin_vc/game_vc/CProjectileInfo.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CProjectileInfo.h" diff --git a/plugin_vc/game_vc/CProjectileInfo.h b/plugin_vc/game_vc/CProjectileInfo.h index 093d804e..155c5ba6 100644 --- a/plugin_vc/game_vc/CProjectileInfo.h +++ b/plugin_vc/game_vc/CProjectileInfo.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CObject.h" #include "eWeaponType.h" diff --git a/plugin_vc/game_vc/CPtrNode.h b/plugin_vc/game_vc/CPtrNode.h index d059bdb4..5e59c223 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 ce44dc65..08b16ed9 100644 --- a/plugin_vc/game_vc/CQuaternion.h +++ b/plugin_vc/game_vc/CQuaternion.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once #include "PluginBase.h" diff --git a/plugin_vc/game_vc/CRenderer.cpp b/plugin_vc/game_vc/CRenderer.cpp index 95069954..ab370491 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 58d27292..052707ca 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 f71fc27e..a5595822 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 80db27ac..106b4958 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 8f537645..54e31f1d 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 0c5eaf35..670b49c8 100644 --- a/plugin_vc/game_vc/CSphere.cpp +++ b/plugin_vc/game_vc/CSphere.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CSphere.h" diff --git a/plugin_vc/game_vc/CSphere.h b/plugin_vc/game_vc/CSphere.h index 7d438f69..5a977e4e 100644 --- a/plugin_vc/game_vc/CSphere.h +++ b/plugin_vc/game_vc/CSphere.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" diff --git a/plugin_vc/game_vc/CStats.cpp b/plugin_vc/game_vc/CStats.cpp index cc7e4fce..f285bce9 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 93e5345f..8769b6a6 100644 --- a/plugin_vc/game_vc/CStats.h +++ b/plugin_vc/game_vc/CStats.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_vc/game_vc/CStinger.cpp b/plugin_vc/game_vc/CStinger.cpp index 0408c9f9..38812e2b 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 4b6640a7..d7473727 100644 --- a/plugin_vc/game_vc/CStinger.h +++ b/plugin_vc/game_vc/CStinger.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CPed.h" #include "CObject.h" diff --git a/plugin_vc/game_vc/CText.h b/plugin_vc/game_vc/CText.h index 80e52e60..38b7f86d 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 425c9c52..f125ee07 100644 --- a/plugin_vc/game_vc/CTheZones.cpp +++ b/plugin_vc/game_vc/CTheZones.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CTheZones.h" diff --git a/plugin_vc/game_vc/CTheZones.h b/plugin_vc/game_vc/CTheZones.h index 2599f923..507c79e5 100644 --- a/plugin_vc/game_vc/CTheZones.h +++ b/plugin_vc/game_vc/CTheZones.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once #include "PluginBase.h" diff --git a/plugin_vc/game_vc/CTimeModelInfo.cpp b/plugin_vc/game_vc/CTimeModelInfo.cpp index 48955f89..25beff7c 100644 --- a/plugin_vc/game_vc/CTimeModelInfo.cpp +++ b/plugin_vc/game_vc/CTimeModelInfo.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CTimeModelInfo.h" diff --git a/plugin_vc/game_vc/CTimeModelInfo.h b/plugin_vc/game_vc/CTimeModelInfo.h index 335e0fd4..991bbbb5 100644 --- a/plugin_vc/game_vc/CTimeModelInfo.h +++ b/plugin_vc/game_vc/CTimeModelInfo.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once #include "PluginBase.h" diff --git a/plugin_vc/game_vc/CTrain.cpp b/plugin_vc/game_vc/CTrain.cpp index 4fee8a25..e0769490 100644 --- a/plugin_vc/game_vc/CTrain.cpp +++ b/plugin_vc/game_vc/CTrain.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CTrain.h" diff --git a/plugin_vc/game_vc/CTrain.h b/plugin_vc/game_vc/CTrain.h index fa5cb3c1..81d43cce 100644 --- a/plugin_vc/game_vc/CTrain.h +++ b/plugin_vc/game_vc/CTrain.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once #include "PluginBase.h" diff --git a/plugin_vc/game_vc/CTxdStore.cpp b/plugin_vc/game_vc/CTxdStore.cpp index 9c694fc6..16ff89b2 100644 --- a/plugin_vc/game_vc/CTxdStore.cpp +++ b/plugin_vc/game_vc/CTxdStore.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CTxdStore.h" diff --git a/plugin_vc/game_vc/CTxdStore.h b/plugin_vc/game_vc/CTxdStore.h index 434c20a3..acc5a607 100644 --- a/plugin_vc/game_vc/CTxdStore.h +++ b/plugin_vc/game_vc/CTxdStore.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once #include "PluginBase.h" diff --git a/plugin_vc/game_vc/CUserDisplay.cpp b/plugin_vc/game_vc/CUserDisplay.cpp index 83e14bf9..78bf9ffb 100644 --- a/plugin_vc/game_vc/CUserDisplay.cpp +++ b/plugin_vc/game_vc/CUserDisplay.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CUserDisplay.h" diff --git a/plugin_vc/game_vc/CUserDisplay.h b/plugin_vc/game_vc/CUserDisplay.h index 5f52a84f..1e7dcc10 100644 --- a/plugin_vc/game_vc/CUserDisplay.h +++ b/plugin_vc/game_vc/CUserDisplay.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once #include "PluginBase.h" diff --git a/plugin_vc/game_vc/CVehicle.cpp b/plugin_vc/game_vc/CVehicle.cpp index ac9e105d..be0a0a03 100644 --- a/plugin_vc/game_vc/CVehicle.cpp +++ b/plugin_vc/game_vc/CVehicle.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CVehicle.h" diff --git a/plugin_vc/game_vc/CVehicle.h b/plugin_vc/game_vc/CVehicle.h index fb8411ad..ddc66012 100644 --- a/plugin_vc/game_vc/CVehicle.h +++ b/plugin_vc/game_vc/CVehicle.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_vc/game_vc/CWanted.cpp b/plugin_vc/game_vc/CWanted.cpp index d5494a20..099dbeda 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 4c52ea4f..3d959783 100644 --- a/plugin_vc/game_vc/CWanted.h +++ b/plugin_vc/game_vc/CWanted.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once #include "PluginBase.h" diff --git a/plugin_vc/game_vc/CWeapon.cpp b/plugin_vc/game_vc/CWeapon.cpp index ce276d4b..05e8be68 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 553b236c..4d48d84e 100644 --- a/plugin_vc/game_vc/CWeapon.h +++ b/plugin_vc/game_vc/CWeapon.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "eWeaponType.h" #include "CEntity.h" diff --git a/plugin_vc/game_vc/CWeaponEffects.cpp b/plugin_vc/game_vc/CWeaponEffects.cpp index 4790565c..57ada345 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 3bcf4390..4af46e3a 100644 --- a/plugin_vc/game_vc/CWeaponEffects.h +++ b/plugin_vc/game_vc/CWeaponEffects.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once #include "PluginBase.h" diff --git a/plugin_vc/game_vc/CWeaponInfo.cpp b/plugin_vc/game_vc/CWeaponInfo.cpp index 45ebf69e..c62dc5be 100644 --- a/plugin_vc/game_vc/CWeaponInfo.cpp +++ b/plugin_vc/game_vc/CWeaponInfo.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CWeaponInfo.h" diff --git a/plugin_vc/game_vc/CWeaponInfo.h b/plugin_vc/game_vc/CWeaponInfo.h index 76beb436..c0cc0595 100644 --- a/plugin_vc/game_vc/CWeaponInfo.h +++ b/plugin_vc/game_vc/CWeaponInfo.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once #include "PluginBase.h" diff --git a/plugin_vc/game_vc/CWeaponModelInfo.cpp b/plugin_vc/game_vc/CWeaponModelInfo.cpp index 88018ba3..a576202c 100644 --- a/plugin_vc/game_vc/CWeaponModelInfo.cpp +++ b/plugin_vc/game_vc/CWeaponModelInfo.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "CWeaponModelInfo.h" diff --git a/plugin_vc/game_vc/CWeaponModelInfo.h b/plugin_vc/game_vc/CWeaponModelInfo.h index 0e1209b5..1b65526d 100644 --- a/plugin_vc/game_vc/CWeaponModelInfo.h +++ b/plugin_vc/game_vc/CWeaponModelInfo.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once #include "PluginBase.h" diff --git a/plugin_vc/game_vc/CWeather.cpp b/plugin_vc/game_vc/CWeather.cpp index 09e7a2ed..3478f092 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 9c1270a6..6e605f0a 100644 --- a/plugin_vc/game_vc/CWeather.h +++ b/plugin_vc/game_vc/CWeather.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once #include "PluginBase.h" diff --git a/plugin_vc/game_vc/CWheel.h b/plugin_vc/game_vc/CWheel.h index f8210f76..d38a8c46 100644 --- a/plugin_vc/game_vc/CWheel.h +++ b/plugin_vc/game_vc/CWheel.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" diff --git a/plugin_vc/game_vc/CWorld.cpp b/plugin_vc/game_vc/CWorld.cpp index d41db280..9d79fb21 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 2a52eba8..134a92f9 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 5558c1a5..6f9d619b 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 16d47b48..c4751258 100644 --- a/plugin_vc/game_vc/NodeName.h +++ b/plugin_vc/game_vc/NodeName.h @@ -5,7 +5,6 @@ Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "RenderWare.h" diff --git a/plugin_vc/game_vc/RwObjectNameIdAssocation.h b/plugin_vc/game_vc/RwObjectNameIdAssocation.h index 7ba82362..a8fba5db 100644 --- a/plugin_vc/game_vc/RwObjectNameIdAssocation.h +++ b/plugin_vc/game_vc/RwObjectNameIdAssocation.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once #include "PluginBase.h" diff --git a/plugin_vc/game_vc/cAudioManager.cpp b/plugin_vc/game_vc/cAudioManager.cpp index db71f164..61806ec9 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 1d3031cc..08aa8394 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 1f789573..5384ea6d 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 b6ad6986..e14098af 100644 --- a/plugin_vc/game_vc/cHandlingDataMgr.cpp +++ b/plugin_vc/game_vc/cHandlingDataMgr.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "cHandlingDataMgr.h" diff --git a/plugin_vc/game_vc/cHandlingDataMgr.h b/plugin_vc/game_vc/cHandlingDataMgr.h index 95c0669d..d037e7e1 100644 --- a/plugin_vc/game_vc/cHandlingDataMgr.h +++ b/plugin_vc/game_vc/cHandlingDataMgr.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "tHandlingData.h" #include "tBikeHandlingData.h" diff --git a/plugin_vc/game_vc/cSampleManager.cpp b/plugin_vc/game_vc/cSampleManager.cpp index fd75f4a8..294b9d1f 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 41513f0d..aca9b3c1 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 2823a885..6f9f04fd 100644 --- a/plugin_vc/game_vc/cTransmission.cpp +++ b/plugin_vc/game_vc/cTransmission.cpp @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) source file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) source file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #include "cTransmission.h" diff --git a/plugin_vc/game_vc/cTransmission.h b/plugin_vc/game_vc/cTransmission.h index df61ad75..95cdea61 100644 --- a/plugin_vc/game_vc/cTransmission.h +++ b/plugin_vc/game_vc/cTransmission.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "tTransmissionGear.h" diff --git a/plugin_vc/game_vc/enums/eCopType.h b/plugin_vc/game_vc/enums/eCopType.h index 1d4681e9..68065fc8 100644 --- a/plugin_vc/game_vc/enums/eCopType.h +++ b/plugin_vc/game_vc/enums/eCopType.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_vc/game_vc/enums/eCoronaType.h b/plugin_vc/game_vc/enums/eCoronaType.h index 3483aba7..5ba206e4 100644 --- a/plugin_vc/game_vc/enums/eCoronaType.h +++ b/plugin_vc/game_vc/enums/eCoronaType.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_vc/game_vc/enums/eCrimeType.h b/plugin_vc/game_vc/enums/eCrimeType.h index dc67c90e..b980fa67 100644 --- a/plugin_vc/game_vc/enums/eCrimeType.h +++ b/plugin_vc/game_vc/enums/eCrimeType.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_vc/game_vc/enums/eEntityStatus.h b/plugin_vc/game_vc/enums/eEntityStatus.h index a97eed82..78388ea9 100644 --- a/plugin_vc/game_vc/enums/eEntityStatus.h +++ b/plugin_vc/game_vc/enums/eEntityStatus.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_vc/game_vc/enums/eEventType.h b/plugin_vc/game_vc/enums/eEventType.h index a722822a..e634e291 100644 --- a/plugin_vc/game_vc/enums/eEventType.h +++ b/plugin_vc/game_vc/enums/eEventType.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_vc/game_vc/enums/eExplosionType.h b/plugin_vc/game_vc/enums/eExplosionType.h index 60436b83..65e19be1 100644 --- a/plugin_vc/game_vc/enums/eExplosionType.h +++ b/plugin_vc/game_vc/enums/eExplosionType.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_vc/game_vc/enums/eFormation.h b/plugin_vc/game_vc/enums/eFormation.h index 07107d1d..d4dc7728 100644 --- a/plugin_vc/game_vc/enums/eFormation.h +++ b/plugin_vc/game_vc/enums/eFormation.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_vc/game_vc/enums/eGangType.h b/plugin_vc/game_vc/enums/eGangType.h index a37c3b0c..962f1f97 100644 --- a/plugin_vc/game_vc/enums/eGangType.h +++ b/plugin_vc/game_vc/enums/eGangType.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_vc/game_vc/enums/eLevelName.h b/plugin_vc/game_vc/enums/eLevelName.h index 582d679d..1f1932eb 100644 --- a/plugin_vc/game_vc/enums/eLevelName.h +++ b/plugin_vc/game_vc/enums/eLevelName.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_vc/game_vc/enums/eModelInfoType.h b/plugin_vc/game_vc/enums/eModelInfoType.h index 66dd34c6..08300920 100644 --- a/plugin_vc/game_vc/enums/eModelInfoType.h +++ b/plugin_vc/game_vc/enums/eModelInfoType.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once #include diff --git a/plugin_vc/game_vc/enums/eParticleObjectType.h b/plugin_vc/game_vc/enums/eParticleObjectType.h index 777e0887..b0db18b6 100644 --- a/plugin_vc/game_vc/enums/eParticleObjectType.h +++ b/plugin_vc/game_vc/enums/eParticleObjectType.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_vc/game_vc/enums/ePedAction.h b/plugin_vc/game_vc/enums/ePedAction.h index c043feab..38e8df3c 100644 --- a/plugin_vc/game_vc/enums/ePedAction.h +++ b/plugin_vc/game_vc/enums/ePedAction.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_vc/game_vc/enums/ePedModel.h b/plugin_vc/game_vc/enums/ePedModel.h index 2ad92b0f..46ade15c 100644 --- a/plugin_vc/game_vc/enums/ePedModel.h +++ b/plugin_vc/game_vc/enums/ePedModel.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_vc/game_vc/enums/ePedPieceTypes.h b/plugin_vc/game_vc/enums/ePedPieceTypes.h index 4bae6d1a..ea706e0e 100644 --- a/plugin_vc/game_vc/enums/ePedPieceTypes.h +++ b/plugin_vc/game_vc/enums/ePedPieceTypes.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_vc/game_vc/enums/ePedStats.h b/plugin_vc/game_vc/enums/ePedStats.h index 26801384..c03f9af4 100644 --- a/plugin_vc/game_vc/enums/ePedStats.h +++ b/plugin_vc/game_vc/enums/ePedStats.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_vc/game_vc/enums/ePickupType.h b/plugin_vc/game_vc/enums/ePickupType.h index 539b4f83..fa16e2b3 100644 --- a/plugin_vc/game_vc/enums/ePickupType.h +++ b/plugin_vc/game_vc/enums/ePickupType.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_vc/game_vc/enums/eRadioStations.h b/plugin_vc/game_vc/enums/eRadioStations.h index af2a791a..2535e42d 100644 --- a/plugin_vc/game_vc/enums/eRadioStations.h +++ b/plugin_vc/game_vc/enums/eRadioStations.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_vc/game_vc/enums/eSceneCommands.h b/plugin_vc/game_vc/enums/eSceneCommands.h index 09766737..b936e8fe 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 d322c398..250b513d 100644 --- a/plugin_vc/game_vc/enums/eShadowType.h +++ b/plugin_vc/game_vc/enums/eShadowType.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_vc/game_vc/enums/eVehicleFlags.h b/plugin_vc/game_vc/enums/eVehicleFlags.h index c7eea4fe..2c9d1f41 100644 --- a/plugin_vc/game_vc/enums/eVehicleFlags.h +++ b/plugin_vc/game_vc/enums/eVehicleFlags.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_vc/game_vc/enums/eVehicleType.h b/plugin_vc/game_vc/enums/eVehicleType.h index cf94d9b8..2734d02a 100644 --- a/plugin_vc/game_vc/enums/eVehicleType.h +++ b/plugin_vc/game_vc/enums/eVehicleType.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_vc/game_vc/enums/eWaitState.h b/plugin_vc/game_vc/enums/eWaitState.h index 605f1d61..9540343d 100644 --- a/plugin_vc/game_vc/enums/eWaitState.h +++ b/plugin_vc/game_vc/enums/eWaitState.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_vc/game_vc/enums/eWeaponFire.h b/plugin_vc/game_vc/enums/eWeaponFire.h index d0d56908..80a38e14 100644 --- a/plugin_vc/game_vc/enums/eWeaponFire.h +++ b/plugin_vc/game_vc/enums/eWeaponFire.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_vc/game_vc/enums/eWeaponModel.h b/plugin_vc/game_vc/enums/eWeaponModel.h index 6cb354ea..14288090 100644 --- a/plugin_vc/game_vc/enums/eWeaponModel.h +++ b/plugin_vc/game_vc/enums/eWeaponModel.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_vc/game_vc/enums/eWeaponType.h b/plugin_vc/game_vc/enums/eWeaponType.h index a393be90..84968ac5 100644 --- a/plugin_vc/game_vc/enums/eWeaponType.h +++ b/plugin_vc/game_vc/enums/eWeaponType.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_vc/game_vc/enums/eWeather.h b/plugin_vc/game_vc/enums/eWeather.h index d2657fb4..363e1f04 100644 --- a/plugin_vc/game_vc/enums/eWeather.h +++ b/plugin_vc/game_vc/enums/eWeather.h @@ -1,8 +1,8 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once diff --git a/plugin_vc/game_vc/tBikeHandlingData.h b/plugin_vc/game_vc/tBikeHandlingData.h index 1f373dc6..541e704b 100644 --- a/plugin_vc/game_vc/tBikeHandlingData.h +++ b/plugin_vc/game_vc/tBikeHandlingData.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" struct tBikeHandlingData { diff --git a/plugin_vc/game_vc/tBoatHandlingData.h b/plugin_vc/game_vc/tBoatHandlingData.h index aef44bcf..9dd5d0b0 100644 --- a/plugin_vc/game_vc/tBoatHandlingData.h +++ b/plugin_vc/game_vc/tBoatHandlingData.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" diff --git a/plugin_vc/game_vc/tFlyingHandlingData.h b/plugin_vc/game_vc/tFlyingHandlingData.h index 5d9aa733..22d6e8d4 100644 --- a/plugin_vc/game_vc/tFlyingHandlingData.h +++ b/plugin_vc/game_vc/tFlyingHandlingData.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "CVector.h" diff --git a/plugin_vc/game_vc/tHandlingData.h b/plugin_vc/game_vc/tHandlingData.h index 609dcee0..99750545 100644 --- a/plugin_vc/game_vc/tHandlingData.h +++ b/plugin_vc/game_vc/tHandlingData.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" #include "cTransmission.h" #include "CVector.h" diff --git a/plugin_vc/game_vc/tTransmissionGear.h b/plugin_vc/game_vc/tTransmissionGear.h index 8a066528..a3eda920 100644 --- a/plugin_vc/game_vc/tTransmissionGear.h +++ b/plugin_vc/game_vc/tTransmissionGear.h @@ -1,11 +1,10 @@ /* -Plugin-SDK (Grand Theft Auto Vice City) header file -Authors: GTA Community. See more here -https://github.com/DK22Pac/plugin-sdk -Do not delete this comment block. Respect others' work! + Plugin-SDK (Grand Theft Auto Vice City) header file + Authors: GTA Community. See more here + https://github.com/DK22Pac/plugin-sdk + Do not delete this comment block. Respect others' work! */ #pragma once - #include "PluginBase.h" struct PLUGIN_API tTransmissionGear diff --git a/shared/GameVersion.cpp b/shared/GameVersion.cpp index c1292c01..908480f5 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 d969bb3b..8f31802b 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 e7104914..29c1d829 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 ff0711c7..17b5ca54 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 e69de29b..00000000 diff --git a/shared/VersionsMacro.h b/shared/VersionsMacro.h index 2616c37b..fac664a4 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 33a4e28c..cb183c01 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 196095ac..90548f6c 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 d4c1fe02..282b0b82 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 cdd58697..6efb8281 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 cf8d030c..e5c137da 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 6f70f09b..2c6de221 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