├── .gitignore ├── .gitmodules ├── .nuget ├── NuGet.Config ├── NuGet.exe └── NuGet.targets ├── Just Cause 3.sln ├── bin └── projects │ ├── Just Cause 3.xml │ ├── Just Cause 3 │ └── files │ │ ├── archives_win64 │ │ ├── game0.filelist │ │ ├── game1.filelist │ │ ├── game10.filelist │ │ ├── game11.filelist │ │ ├── game12.filelist │ │ ├── game13.filelist │ │ ├── game14.filelist │ │ ├── game15.filelist │ │ ├── game16.filelist │ │ ├── game17.filelist │ │ ├── game18.filelist │ │ ├── game19.filelist │ │ ├── game2.filelist │ │ ├── game20.filelist │ │ ├── game21.filelist │ │ ├── game22.filelist │ │ ├── game23.filelist │ │ ├── game24.filelist │ │ ├── game25.filelist │ │ ├── game26.filelist │ │ ├── game27.filelist │ │ ├── game28.filelist │ │ ├── game29.filelist │ │ ├── game3.filelist │ │ ├── game30.filelist │ │ ├── game31.filelist │ │ ├── game32.filelist │ │ ├── game33.filelist │ │ ├── game34.filelist │ │ ├── game35.filelist │ │ ├── game36.filelist │ │ ├── game37.filelist │ │ ├── game38.filelist │ │ ├── game39.filelist │ │ ├── game4.filelist │ │ ├── game40.filelist │ │ ├── game41.filelist │ │ ├── game42.filelist │ │ ├── game43.filelist │ │ ├── game44.filelist │ │ ├── game45.filelist │ │ ├── game46.filelist │ │ ├── game47.filelist │ │ ├── game48.filelist │ │ ├── game49.filelist │ │ ├── game5.filelist │ │ ├── game50.filelist │ │ ├── game51.filelist │ │ ├── game52.filelist │ │ ├── game53.filelist │ │ ├── game54.filelist │ │ ├── game55.filelist │ │ ├── game56.filelist │ │ ├── game57.filelist │ │ ├── game58.filelist │ │ ├── game59.filelist │ │ ├── game6.filelist │ │ ├── game60.filelist │ │ ├── game61.filelist │ │ ├── game62.filelist │ │ ├── game63.filelist │ │ ├── game64.filelist │ │ ├── game65.filelist │ │ ├── game66.filelist │ │ ├── game67.filelist │ │ ├── game68.filelist │ │ ├── game69.filelist │ │ ├── game7.filelist │ │ ├── game70.filelist │ │ ├── game71.filelist │ │ ├── game8.filelist │ │ └── game9.filelist │ │ ├── dlc │ │ ├── 348880 │ │ │ └── game0.filelist │ │ ├── 388290 │ │ │ └── game0.filelist │ │ ├── 388291 │ │ │ └── game0.filelist │ │ └── 388292 │ │ │ └── game0.filelist │ │ ├── patch_win64 │ │ ├── game0.filelist │ │ ├── game1.filelist │ │ ├── game2.filelist │ │ ├── game3.filelist │ │ ├── game4.filelist │ │ └── game5.filelist │ │ └── status.txt │ ├── Shared.xml │ ├── current.txt │ └── formats.json ├── license.txt ├── mods ├── build mods.bat ├── enable hidden rebel drops │ └── item.json ├── formatted instructions.txt ├── gibbed mod readme.txt ├── infinite beacons │ ├── sarc │ │ ├── @files.xml │ │ ├── ai │ │ │ └── bts │ │ │ │ └── vehicle │ │ │ │ └── airplane │ │ │ │ └── airplane_rebel_drop.btc │ │ ├── editor │ │ │ └── entities │ │ │ │ ├── jc_environments │ │ │ │ └── shared │ │ │ │ │ └── rigid_object_effect_settings_default.etunec │ │ │ │ └── jc_weapons │ │ │ │ ├── 00_shared │ │ │ │ └── autoaim_tuning │ │ │ │ │ └── autoaim_grenade.wtunec │ │ │ │ └── 03_thrown │ │ │ │ └── w302_beacon │ │ │ │ ├── w302_beacon.ee.fmod_guids │ │ │ │ ├── w302_beacon.epe │ │ │ │ └── w302_beacon.wtunec │ │ ├── effects │ │ │ ├── jc_weapons │ │ │ │ └── hand_grenade │ │ │ │ │ └── grenade_trail.effc │ │ │ └── textures │ │ │ │ ├── t_smoke_rolling_04_alpha_dif.tga.8_8b.trim │ │ │ │ └── t_spherical_ramp.ddsc │ │ └── models │ │ │ └── jc_environments │ │ │ └── props │ │ │ └── elements │ │ │ └── rebel_beacon │ │ │ ├── rebel_beacon_01_dif.ddsc │ │ │ ├── rebel_beacon_01_glo.ddsc │ │ │ ├── rebel_beacon_01_met.ddsc │ │ │ ├── rebel_beacon_01_nrm.ddsc │ │ │ ├── rebel_beacon_02_dif.ddsc │ │ │ ├── rebel_beacon_a_01.lod │ │ │ ├── rebel_beacon_a_01_col.pfxc │ │ │ ├── rebel_beacon_a_01_lod1.rbm │ │ │ └── rebel_beacon_a_01_lod2.rbm │ └── w302_beacon_modified.xml ├── no intro │ └── dropzone │ │ └── videos │ │ └── corona_video.bikc ├── no rebel drop timers + enable hidden rebel drops │ └── item.json ├── no rebel drop timers │ └── item.json ├── unlock all + hidden rebel drops │ └── task.json ├── unlock all rebel drops │ └── task.json └── unlock hidden rebel drops │ └── task.json └── projects ├── Gibbed.JustCause3.ConvertAdf ├── Exporter.cs ├── Gibbed.JustCause3.ConvertAdf.csproj ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── RuntimeTypeLibrary.cs ├── TypeHashes.cs └── license.txt ├── Gibbed.JustCause3.ConvertItem ├── Gibbed.JustCause3.ConvertItem.csproj ├── ItemRoot.cs ├── ItemRootJson.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── UIItemSubtype.cs ├── UIItemType.cs ├── license.txt └── packages.config ├── Gibbed.JustCause3.ConvertProperty ├── Gibbed.JustCause3.ConvertProperty.csproj ├── NameComparer.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs └── license.txt ├── Gibbed.JustCause3.ConvertTask ├── Gibbed.JustCause3.ConvertTask.csproj ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── TaskRoot.cs ├── TaskRootJson.cs ├── license.txt └── packages.config ├── Gibbed.JustCause3.ConvertTexture ├── Gibbed.JustCause3.ConvertTexture.csproj ├── Program.cs ├── Properties │ └── AssemblyInfo.cs └── license.txt ├── Gibbed.JustCause3.ConvertUpgrade ├── Gibbed.JustCause3.ConvertUpgrade.csproj ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── UpgradeRoot.cs ├── UpgradeRootJson.cs ├── license.txt └── packages.config ├── Gibbed.JustCause3.FileFormats ├── AdfFile.cs ├── ArchiveTableFile.cs ├── CoolArchiveFile.cs ├── FileDetection.cs ├── Gibbed.JustCause3.FileFormats.csproj ├── Matrix4x4.cs ├── ProjectHelpers.cs ├── Properties │ └── AssemblyInfo.cs ├── SmallArchiveFile.cs ├── StringHelpers.cs ├── TextureFile.cs ├── Vector2.cs ├── Vector3.cs ├── Vector4.cs └── license.txt ├── Gibbed.JustCause3.PropertyFormats ├── Gibbed.JustCause3.PropertyFormats.csproj ├── IPropertyFile.cs ├── IVariant.cs ├── Node.cs ├── ProjectHelpers.cs ├── Properties │ └── AssemblyInfo.cs ├── PropertyContainerFile.cs ├── VariantFactory.cs ├── Variants │ ├── BytesVariant.cs │ ├── EventsVariant.cs │ ├── FloatVariant.cs │ ├── FloatsVariant.cs │ ├── IntegerVariant.cs │ ├── IntegersVariant.cs │ ├── Matrix4x4Variant.cs │ ├── ObjectIdVariant.cs │ ├── StringVariant.cs │ ├── Vector2Variant.cs │ ├── Vector3Variant.cs │ └── Vector4Variant.cs └── license.txt ├── Gibbed.JustCause3.SmallPack ├── Gibbed.JustCause3.SmallPack.csproj ├── Program.cs ├── Properties │ └── AssemblyInfo.cs └── license.txt ├── Gibbed.JustCause3.SmallUnpack ├── CoolStream.cs ├── Gibbed.JustCause3.SmallUnpack.csproj ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── license.txt └── packages.config ├── Gibbed.JustCause3.Uncompress ├── CoolStream.cs ├── Gibbed.JustCause3.Uncompress.csproj ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── license.txt └── packages.config ├── Gibbed.JustCause3.Unpack ├── Gibbed.JustCause3.Unpack.csproj ├── Program.cs ├── Properties │ └── AssemblyInfo.cs └── license.txt └── RebuildFileLists ├── Program.cs ├── Properties └── AssemblyInfo.cs └── RebuildFileLists.csproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/.gitmodules -------------------------------------------------------------------------------- /.nuget/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/.nuget/NuGet.Config -------------------------------------------------------------------------------- /.nuget/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/.nuget/NuGet.exe -------------------------------------------------------------------------------- /.nuget/NuGet.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/.nuget/NuGet.targets -------------------------------------------------------------------------------- /Just Cause 3.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/Just Cause 3.sln -------------------------------------------------------------------------------- /bin/projects/Just Cause 3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/bin/projects/Just Cause 3.xml -------------------------------------------------------------------------------- /bin/projects/Just Cause 3/files/archives_win64/game0.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/bin/projects/Just Cause 3/files/archives_win64/game0.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 3/files/archives_win64/game1.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/bin/projects/Just Cause 3/files/archives_win64/game1.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 3/files/archives_win64/game10.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/bin/projects/Just Cause 3/files/archives_win64/game10.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 3/files/archives_win64/game11.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/bin/projects/Just Cause 3/files/archives_win64/game11.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 3/files/archives_win64/game12.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/bin/projects/Just Cause 3/files/archives_win64/game12.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 3/files/archives_win64/game13.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/bin/projects/Just Cause 3/files/archives_win64/game13.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 3/files/archives_win64/game14.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/bin/projects/Just Cause 3/files/archives_win64/game14.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 3/files/archives_win64/game15.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/bin/projects/Just Cause 3/files/archives_win64/game15.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 3/files/archives_win64/game16.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/bin/projects/Just Cause 3/files/archives_win64/game16.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 3/files/archives_win64/game17.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/bin/projects/Just Cause 3/files/archives_win64/game17.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 3/files/archives_win64/game18.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/bin/projects/Just Cause 3/files/archives_win64/game18.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 3/files/archives_win64/game19.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/bin/projects/Just Cause 3/files/archives_win64/game19.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 3/files/archives_win64/game2.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/bin/projects/Just Cause 3/files/archives_win64/game2.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 3/files/archives_win64/game20.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/bin/projects/Just Cause 3/files/archives_win64/game20.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 3/files/archives_win64/game21.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/bin/projects/Just Cause 3/files/archives_win64/game21.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 3/files/archives_win64/game22.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/bin/projects/Just Cause 3/files/archives_win64/game22.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 3/files/archives_win64/game23.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/bin/projects/Just Cause 3/files/archives_win64/game23.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 3/files/archives_win64/game24.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/bin/projects/Just Cause 3/files/archives_win64/game24.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 3/files/archives_win64/game25.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/bin/projects/Just Cause 3/files/archives_win64/game25.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 3/files/archives_win64/game26.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/bin/projects/Just Cause 3/files/archives_win64/game26.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 3/files/archives_win64/game27.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/bin/projects/Just Cause 3/files/archives_win64/game27.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 3/files/archives_win64/game28.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/bin/projects/Just Cause 3/files/archives_win64/game28.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 3/files/archives_win64/game29.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/bin/projects/Just Cause 3/files/archives_win64/game29.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 3/files/archives_win64/game3.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/bin/projects/Just Cause 3/files/archives_win64/game3.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 3/files/archives_win64/game30.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/bin/projects/Just Cause 3/files/archives_win64/game30.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 3/files/archives_win64/game31.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/bin/projects/Just Cause 3/files/archives_win64/game31.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 3/files/archives_win64/game32.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/bin/projects/Just Cause 3/files/archives_win64/game32.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 3/files/archives_win64/game33.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/bin/projects/Just Cause 3/files/archives_win64/game33.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 3/files/archives_win64/game34.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/bin/projects/Just Cause 3/files/archives_win64/game34.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 3/files/archives_win64/game35.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/bin/projects/Just Cause 3/files/archives_win64/game35.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 3/files/archives_win64/game36.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/bin/projects/Just Cause 3/files/archives_win64/game36.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 3/files/archives_win64/game37.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/bin/projects/Just Cause 3/files/archives_win64/game37.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 3/files/archives_win64/game38.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/bin/projects/Just Cause 3/files/archives_win64/game38.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 3/files/archives_win64/game39.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/bin/projects/Just Cause 3/files/archives_win64/game39.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 3/files/archives_win64/game4.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/bin/projects/Just Cause 3/files/archives_win64/game4.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 3/files/archives_win64/game40.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/bin/projects/Just Cause 3/files/archives_win64/game40.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 3/files/archives_win64/game41.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/bin/projects/Just Cause 3/files/archives_win64/game41.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 3/files/archives_win64/game42.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/bin/projects/Just Cause 3/files/archives_win64/game42.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 3/files/archives_win64/game43.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/bin/projects/Just Cause 3/files/archives_win64/game43.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 3/files/archives_win64/game44.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/bin/projects/Just Cause 3/files/archives_win64/game44.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 3/files/archives_win64/game45.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/bin/projects/Just Cause 3/files/archives_win64/game45.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 3/files/archives_win64/game46.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/bin/projects/Just Cause 3/files/archives_win64/game46.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 3/files/archives_win64/game47.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/bin/projects/Just Cause 3/files/archives_win64/game47.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 3/files/archives_win64/game48.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/bin/projects/Just Cause 3/files/archives_win64/game48.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 3/files/archives_win64/game49.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/bin/projects/Just Cause 3/files/archives_win64/game49.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 3/files/archives_win64/game5.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/bin/projects/Just Cause 3/files/archives_win64/game5.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 3/files/archives_win64/game50.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/bin/projects/Just Cause 3/files/archives_win64/game50.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 3/files/archives_win64/game51.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/bin/projects/Just Cause 3/files/archives_win64/game51.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 3/files/archives_win64/game52.filelist: -------------------------------------------------------------------------------- 1 | ; 0/11358 (0%) 2 | -------------------------------------------------------------------------------- /bin/projects/Just Cause 3/files/archives_win64/game53.filelist: -------------------------------------------------------------------------------- 1 | ; 0/1696 (0%) 2 | -------------------------------------------------------------------------------- /bin/projects/Just Cause 3/files/archives_win64/game54.filelist: -------------------------------------------------------------------------------- 1 | ; 0/11694 (0%) 2 | -------------------------------------------------------------------------------- /bin/projects/Just Cause 3/files/archives_win64/game55.filelist: -------------------------------------------------------------------------------- 1 | ; 0/1365 (0%) 2 | -------------------------------------------------------------------------------- /bin/projects/Just Cause 3/files/archives_win64/game56.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/bin/projects/Just Cause 3/files/archives_win64/game56.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 3/files/archives_win64/game57.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/bin/projects/Just Cause 3/files/archives_win64/game57.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 3/files/archives_win64/game58.filelist: -------------------------------------------------------------------------------- 1 | ; 0/12741 (0%) 2 | -------------------------------------------------------------------------------- /bin/projects/Just Cause 3/files/archives_win64/game59.filelist: -------------------------------------------------------------------------------- 1 | ; 0/326 (0%) 2 | -------------------------------------------------------------------------------- /bin/projects/Just Cause 3/files/archives_win64/game6.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/bin/projects/Just Cause 3/files/archives_win64/game6.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 3/files/archives_win64/game60.filelist: -------------------------------------------------------------------------------- 1 | ; 0/10743 (0%) 2 | -------------------------------------------------------------------------------- /bin/projects/Just Cause 3/files/archives_win64/game61.filelist: -------------------------------------------------------------------------------- 1 | ; 0/2411 (0%) 2 | -------------------------------------------------------------------------------- /bin/projects/Just Cause 3/files/archives_win64/game62.filelist: -------------------------------------------------------------------------------- 1 | ; 0/10984 (0%) 2 | -------------------------------------------------------------------------------- /bin/projects/Just Cause 3/files/archives_win64/game63.filelist: -------------------------------------------------------------------------------- 1 | ; 0/2074 (0%) 2 | -------------------------------------------------------------------------------- /bin/projects/Just Cause 3/files/archives_win64/game64.filelist: -------------------------------------------------------------------------------- 1 | ; 0/1 (0%) 2 | -------------------------------------------------------------------------------- /bin/projects/Just Cause 3/files/archives_win64/game65.filelist: -------------------------------------------------------------------------------- 1 | ; 1/12178 (0%) 2 | ai/tiles/51_30.navmeshc 3 | -------------------------------------------------------------------------------- /bin/projects/Just Cause 3/files/archives_win64/game66.filelist: -------------------------------------------------------------------------------- 1 | ; 0/882 (0%) 2 | -------------------------------------------------------------------------------- /bin/projects/Just Cause 3/files/archives_win64/game67.filelist: -------------------------------------------------------------------------------- 1 | ; 0/1 (0%) 2 | -------------------------------------------------------------------------------- /bin/projects/Just Cause 3/files/archives_win64/game68.filelist: -------------------------------------------------------------------------------- 1 | ; 0/10667 (0%) 2 | -------------------------------------------------------------------------------- /bin/projects/Just Cause 3/files/archives_win64/game69.filelist: -------------------------------------------------------------------------------- 1 | ; 0/2411 (0%) 2 | -------------------------------------------------------------------------------- /bin/projects/Just Cause 3/files/archives_win64/game7.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/bin/projects/Just Cause 3/files/archives_win64/game7.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 3/files/archives_win64/game70.filelist: -------------------------------------------------------------------------------- 1 | ; 0/11300 (0%) 2 | -------------------------------------------------------------------------------- /bin/projects/Just Cause 3/files/archives_win64/game71.filelist: -------------------------------------------------------------------------------- 1 | ; 0/1760 (0%) 2 | -------------------------------------------------------------------------------- /bin/projects/Just Cause 3/files/archives_win64/game8.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/bin/projects/Just Cause 3/files/archives_win64/game8.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 3/files/archives_win64/game9.filelist: -------------------------------------------------------------------------------- 1 | ; 1/1 (100%) 2 | videos/credits.bikc 3 | -------------------------------------------------------------------------------- /bin/projects/Just Cause 3/files/dlc/348880/game0.filelist: -------------------------------------------------------------------------------- 1 | ; 0/2 (0%) 2 | -------------------------------------------------------------------------------- /bin/projects/Just Cause 3/files/dlc/388290/game0.filelist: -------------------------------------------------------------------------------- 1 | ; 0/2 (0%) 2 | -------------------------------------------------------------------------------- /bin/projects/Just Cause 3/files/dlc/388291/game0.filelist: -------------------------------------------------------------------------------- 1 | ; 0/2 (0%) 2 | -------------------------------------------------------------------------------- /bin/projects/Just Cause 3/files/dlc/388292/game0.filelist: -------------------------------------------------------------------------------- 1 | ; 0/2 (0%) 2 | -------------------------------------------------------------------------------- /bin/projects/Just Cause 3/files/patch_win64/game0.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/bin/projects/Just Cause 3/files/patch_win64/game0.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 3/files/patch_win64/game1.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/bin/projects/Just Cause 3/files/patch_win64/game1.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 3/files/patch_win64/game2.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/bin/projects/Just Cause 3/files/patch_win64/game2.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 3/files/patch_win64/game3.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/bin/projects/Just Cause 3/files/patch_win64/game3.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 3/files/patch_win64/game4.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/bin/projects/Just Cause 3/files/patch_win64/game4.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 3/files/patch_win64/game5.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/bin/projects/Just Cause 3/files/patch_win64/game5.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 3/files/status.txt: -------------------------------------------------------------------------------- 1 | 56237/160939 (34%) 2 | -------------------------------------------------------------------------------- /bin/projects/Shared.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/bin/projects/Shared.xml -------------------------------------------------------------------------------- /bin/projects/current.txt: -------------------------------------------------------------------------------- 1 | Just Cause 3 -------------------------------------------------------------------------------- /bin/projects/formats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/bin/projects/formats.json -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/license.txt -------------------------------------------------------------------------------- /mods/build mods.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/mods/build mods.bat -------------------------------------------------------------------------------- /mods/enable hidden rebel drops/item.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/mods/enable hidden rebel drops/item.json -------------------------------------------------------------------------------- /mods/formatted instructions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/mods/formatted instructions.txt -------------------------------------------------------------------------------- /mods/gibbed mod readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/mods/gibbed mod readme.txt -------------------------------------------------------------------------------- /mods/infinite beacons/sarc/@files.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/mods/infinite beacons/sarc/@files.xml -------------------------------------------------------------------------------- /mods/infinite beacons/sarc/ai/bts/vehicle/airplane/airplane_rebel_drop.btc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/mods/infinite beacons/sarc/ai/bts/vehicle/airplane/airplane_rebel_drop.btc -------------------------------------------------------------------------------- /mods/infinite beacons/sarc/editor/entities/jc_environments/shared/rigid_object_effect_settings_default.etunec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/mods/infinite beacons/sarc/editor/entities/jc_environments/shared/rigid_object_effect_settings_default.etunec -------------------------------------------------------------------------------- /mods/infinite beacons/sarc/editor/entities/jc_weapons/00_shared/autoaim_tuning/autoaim_grenade.wtunec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/mods/infinite beacons/sarc/editor/entities/jc_weapons/00_shared/autoaim_tuning/autoaim_grenade.wtunec -------------------------------------------------------------------------------- /mods/infinite beacons/sarc/editor/entities/jc_weapons/03_thrown/w302_beacon/w302_beacon.ee.fmod_guids: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/mods/infinite beacons/sarc/editor/entities/jc_weapons/03_thrown/w302_beacon/w302_beacon.ee.fmod_guids -------------------------------------------------------------------------------- /mods/infinite beacons/sarc/editor/entities/jc_weapons/03_thrown/w302_beacon/w302_beacon.epe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/mods/infinite beacons/sarc/editor/entities/jc_weapons/03_thrown/w302_beacon/w302_beacon.epe -------------------------------------------------------------------------------- /mods/infinite beacons/sarc/editor/entities/jc_weapons/03_thrown/w302_beacon/w302_beacon.wtunec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/mods/infinite beacons/sarc/editor/entities/jc_weapons/03_thrown/w302_beacon/w302_beacon.wtunec -------------------------------------------------------------------------------- /mods/infinite beacons/sarc/effects/jc_weapons/hand_grenade/grenade_trail.effc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/mods/infinite beacons/sarc/effects/jc_weapons/hand_grenade/grenade_trail.effc -------------------------------------------------------------------------------- /mods/infinite beacons/sarc/effects/textures/t_smoke_rolling_04_alpha_dif.tga.8_8b.trim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/mods/infinite beacons/sarc/effects/textures/t_smoke_rolling_04_alpha_dif.tga.8_8b.trim -------------------------------------------------------------------------------- /mods/infinite beacons/sarc/effects/textures/t_spherical_ramp.ddsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/mods/infinite beacons/sarc/effects/textures/t_spherical_ramp.ddsc -------------------------------------------------------------------------------- /mods/infinite beacons/sarc/models/jc_environments/props/elements/rebel_beacon/rebel_beacon_01_dif.ddsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/mods/infinite beacons/sarc/models/jc_environments/props/elements/rebel_beacon/rebel_beacon_01_dif.ddsc -------------------------------------------------------------------------------- /mods/infinite beacons/sarc/models/jc_environments/props/elements/rebel_beacon/rebel_beacon_01_glo.ddsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/mods/infinite beacons/sarc/models/jc_environments/props/elements/rebel_beacon/rebel_beacon_01_glo.ddsc -------------------------------------------------------------------------------- /mods/infinite beacons/sarc/models/jc_environments/props/elements/rebel_beacon/rebel_beacon_01_met.ddsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/mods/infinite beacons/sarc/models/jc_environments/props/elements/rebel_beacon/rebel_beacon_01_met.ddsc -------------------------------------------------------------------------------- /mods/infinite beacons/sarc/models/jc_environments/props/elements/rebel_beacon/rebel_beacon_01_nrm.ddsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/mods/infinite beacons/sarc/models/jc_environments/props/elements/rebel_beacon/rebel_beacon_01_nrm.ddsc -------------------------------------------------------------------------------- /mods/infinite beacons/sarc/models/jc_environments/props/elements/rebel_beacon/rebel_beacon_02_dif.ddsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/mods/infinite beacons/sarc/models/jc_environments/props/elements/rebel_beacon/rebel_beacon_02_dif.ddsc -------------------------------------------------------------------------------- /mods/infinite beacons/sarc/models/jc_environments/props/elements/rebel_beacon/rebel_beacon_a_01.lod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/mods/infinite beacons/sarc/models/jc_environments/props/elements/rebel_beacon/rebel_beacon_a_01.lod -------------------------------------------------------------------------------- /mods/infinite beacons/sarc/models/jc_environments/props/elements/rebel_beacon/rebel_beacon_a_01_col.pfxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/mods/infinite beacons/sarc/models/jc_environments/props/elements/rebel_beacon/rebel_beacon_a_01_col.pfxc -------------------------------------------------------------------------------- /mods/infinite beacons/sarc/models/jc_environments/props/elements/rebel_beacon/rebel_beacon_a_01_lod1.rbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/mods/infinite beacons/sarc/models/jc_environments/props/elements/rebel_beacon/rebel_beacon_a_01_lod1.rbm -------------------------------------------------------------------------------- /mods/infinite beacons/sarc/models/jc_environments/props/elements/rebel_beacon/rebel_beacon_a_01_lod2.rbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/mods/infinite beacons/sarc/models/jc_environments/props/elements/rebel_beacon/rebel_beacon_a_01_lod2.rbm -------------------------------------------------------------------------------- /mods/infinite beacons/w302_beacon_modified.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/mods/infinite beacons/w302_beacon_modified.xml -------------------------------------------------------------------------------- /mods/no intro/dropzone/videos/corona_video.bikc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mods/no rebel drop timers + enable hidden rebel drops/item.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/mods/no rebel drop timers + enable hidden rebel drops/item.json -------------------------------------------------------------------------------- /mods/no rebel drop timers/item.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/mods/no rebel drop timers/item.json -------------------------------------------------------------------------------- /mods/unlock all + hidden rebel drops/task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/mods/unlock all + hidden rebel drops/task.json -------------------------------------------------------------------------------- /mods/unlock all rebel drops/task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/mods/unlock all rebel drops/task.json -------------------------------------------------------------------------------- /mods/unlock hidden rebel drops/task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/mods/unlock hidden rebel drops/task.json -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.ConvertAdf/Exporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.ConvertAdf/Exporter.cs -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.ConvertAdf/Gibbed.JustCause3.ConvertAdf.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.ConvertAdf/Gibbed.JustCause3.ConvertAdf.csproj -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.ConvertAdf/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.ConvertAdf/Program.cs -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.ConvertAdf/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.ConvertAdf/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.ConvertAdf/RuntimeTypeLibrary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.ConvertAdf/RuntimeTypeLibrary.cs -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.ConvertAdf/TypeHashes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.ConvertAdf/TypeHashes.cs -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.ConvertAdf/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.ConvertAdf/license.txt -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.ConvertItem/Gibbed.JustCause3.ConvertItem.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.ConvertItem/Gibbed.JustCause3.ConvertItem.csproj -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.ConvertItem/ItemRoot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.ConvertItem/ItemRoot.cs -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.ConvertItem/ItemRootJson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.ConvertItem/ItemRootJson.cs -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.ConvertItem/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.ConvertItem/Program.cs -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.ConvertItem/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.ConvertItem/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.ConvertItem/UIItemSubtype.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.ConvertItem/UIItemSubtype.cs -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.ConvertItem/UIItemType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.ConvertItem/UIItemType.cs -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.ConvertItem/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.ConvertItem/license.txt -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.ConvertItem/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.ConvertItem/packages.config -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.ConvertProperty/Gibbed.JustCause3.ConvertProperty.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.ConvertProperty/Gibbed.JustCause3.ConvertProperty.csproj -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.ConvertProperty/NameComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.ConvertProperty/NameComparer.cs -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.ConvertProperty/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.ConvertProperty/Program.cs -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.ConvertProperty/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.ConvertProperty/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.ConvertProperty/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.ConvertProperty/license.txt -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.ConvertTask/Gibbed.JustCause3.ConvertTask.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.ConvertTask/Gibbed.JustCause3.ConvertTask.csproj -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.ConvertTask/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.ConvertTask/Program.cs -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.ConvertTask/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.ConvertTask/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.ConvertTask/TaskRoot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.ConvertTask/TaskRoot.cs -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.ConvertTask/TaskRootJson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.ConvertTask/TaskRootJson.cs -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.ConvertTask/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.ConvertTask/license.txt -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.ConvertTask/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.ConvertTask/packages.config -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.ConvertTexture/Gibbed.JustCause3.ConvertTexture.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.ConvertTexture/Gibbed.JustCause3.ConvertTexture.csproj -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.ConvertTexture/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.ConvertTexture/Program.cs -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.ConvertTexture/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.ConvertTexture/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.ConvertTexture/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.ConvertTexture/license.txt -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.ConvertUpgrade/Gibbed.JustCause3.ConvertUpgrade.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.ConvertUpgrade/Gibbed.JustCause3.ConvertUpgrade.csproj -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.ConvertUpgrade/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.ConvertUpgrade/Program.cs -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.ConvertUpgrade/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.ConvertUpgrade/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.ConvertUpgrade/UpgradeRoot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.ConvertUpgrade/UpgradeRoot.cs -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.ConvertUpgrade/UpgradeRootJson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.ConvertUpgrade/UpgradeRootJson.cs -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.ConvertUpgrade/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.ConvertUpgrade/license.txt -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.ConvertUpgrade/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.ConvertUpgrade/packages.config -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.FileFormats/AdfFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.FileFormats/AdfFile.cs -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.FileFormats/ArchiveTableFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.FileFormats/ArchiveTableFile.cs -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.FileFormats/CoolArchiveFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.FileFormats/CoolArchiveFile.cs -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.FileFormats/FileDetection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.FileFormats/FileDetection.cs -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.FileFormats/Gibbed.JustCause3.FileFormats.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.FileFormats/Gibbed.JustCause3.FileFormats.csproj -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.FileFormats/Matrix4x4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.FileFormats/Matrix4x4.cs -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.FileFormats/ProjectHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.FileFormats/ProjectHelpers.cs -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.FileFormats/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.FileFormats/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.FileFormats/SmallArchiveFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.FileFormats/SmallArchiveFile.cs -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.FileFormats/StringHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.FileFormats/StringHelpers.cs -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.FileFormats/TextureFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.FileFormats/TextureFile.cs -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.FileFormats/Vector2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.FileFormats/Vector2.cs -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.FileFormats/Vector3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.FileFormats/Vector3.cs -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.FileFormats/Vector4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.FileFormats/Vector4.cs -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.FileFormats/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.FileFormats/license.txt -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.PropertyFormats/Gibbed.JustCause3.PropertyFormats.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.PropertyFormats/Gibbed.JustCause3.PropertyFormats.csproj -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.PropertyFormats/IPropertyFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.PropertyFormats/IPropertyFile.cs -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.PropertyFormats/IVariant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.PropertyFormats/IVariant.cs -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.PropertyFormats/Node.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.PropertyFormats/Node.cs -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.PropertyFormats/ProjectHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.PropertyFormats/ProjectHelpers.cs -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.PropertyFormats/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.PropertyFormats/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.PropertyFormats/PropertyContainerFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.PropertyFormats/PropertyContainerFile.cs -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.PropertyFormats/VariantFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.PropertyFormats/VariantFactory.cs -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.PropertyFormats/Variants/BytesVariant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.PropertyFormats/Variants/BytesVariant.cs -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.PropertyFormats/Variants/EventsVariant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.PropertyFormats/Variants/EventsVariant.cs -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.PropertyFormats/Variants/FloatVariant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.PropertyFormats/Variants/FloatVariant.cs -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.PropertyFormats/Variants/FloatsVariant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.PropertyFormats/Variants/FloatsVariant.cs -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.PropertyFormats/Variants/IntegerVariant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.PropertyFormats/Variants/IntegerVariant.cs -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.PropertyFormats/Variants/IntegersVariant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.PropertyFormats/Variants/IntegersVariant.cs -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.PropertyFormats/Variants/Matrix4x4Variant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.PropertyFormats/Variants/Matrix4x4Variant.cs -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.PropertyFormats/Variants/ObjectIdVariant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.PropertyFormats/Variants/ObjectIdVariant.cs -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.PropertyFormats/Variants/StringVariant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.PropertyFormats/Variants/StringVariant.cs -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.PropertyFormats/Variants/Vector2Variant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.PropertyFormats/Variants/Vector2Variant.cs -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.PropertyFormats/Variants/Vector3Variant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.PropertyFormats/Variants/Vector3Variant.cs -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.PropertyFormats/Variants/Vector4Variant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.PropertyFormats/Variants/Vector4Variant.cs -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.PropertyFormats/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.PropertyFormats/license.txt -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.SmallPack/Gibbed.JustCause3.SmallPack.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.SmallPack/Gibbed.JustCause3.SmallPack.csproj -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.SmallPack/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.SmallPack/Program.cs -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.SmallPack/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.SmallPack/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.SmallPack/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.SmallPack/license.txt -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.SmallUnpack/CoolStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.SmallUnpack/CoolStream.cs -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.SmallUnpack/Gibbed.JustCause3.SmallUnpack.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.SmallUnpack/Gibbed.JustCause3.SmallUnpack.csproj -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.SmallUnpack/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.SmallUnpack/Program.cs -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.SmallUnpack/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.SmallUnpack/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.SmallUnpack/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.SmallUnpack/license.txt -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.SmallUnpack/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.SmallUnpack/packages.config -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.Uncompress/CoolStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.Uncompress/CoolStream.cs -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.Uncompress/Gibbed.JustCause3.Uncompress.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.Uncompress/Gibbed.JustCause3.Uncompress.csproj -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.Uncompress/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.Uncompress/Program.cs -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.Uncompress/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.Uncompress/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.Uncompress/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.Uncompress/license.txt -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.Uncompress/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.Uncompress/packages.config -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.Unpack/Gibbed.JustCause3.Unpack.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.Unpack/Gibbed.JustCause3.Unpack.csproj -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.Unpack/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.Unpack/Program.cs -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.Unpack/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.Unpack/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /projects/Gibbed.JustCause3.Unpack/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/Gibbed.JustCause3.Unpack/license.txt -------------------------------------------------------------------------------- /projects/RebuildFileLists/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/RebuildFileLists/Program.cs -------------------------------------------------------------------------------- /projects/RebuildFileLists/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/RebuildFileLists/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /projects/RebuildFileLists/RebuildFileLists.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause3/HEAD/projects/RebuildFileLists/RebuildFileLists.csproj --------------------------------------------------------------------------------