├── .gitattributes ├── .gitignore ├── Project ├── .vs │ ├── CompVMInstaller │ │ ├── v14 │ │ │ └── .suo │ │ └── v15 │ │ │ ├── .suo │ │ │ └── Server │ │ │ └── sqlite3 │ │ │ ├── db.lock │ │ │ └── storage.ide │ └── CompetitiveViewmodelMaker │ │ └── v14 │ │ └── .suo ├── CompVMInstaller.sln ├── CompVMInstaller.v12.suo └── CompVMInstaller │ ├── AboutBox1.Designer.vb │ ├── AboutBox1.resx │ ├── AboutBox1.vb │ ├── App.config │ ├── ApplicationEvents.vb │ ├── CompVMInstaller.vbproj │ ├── CompVMInstaller.vbproj.user │ ├── Dialog1.Designer.vb │ ├── Dialog1.resx │ ├── Dialog1.vb │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── Form2.Designer.vb │ ├── Form2.resx │ ├── Form2.vb │ ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ ├── Settings.settings │ └── app.manifest │ ├── Resources │ ├── animations.zip │ ├── compviewmodelbannersmall.jpg │ ├── demo_blank.jpg │ ├── demo_grenadelauncher.jpg │ ├── demo_grenadelauncher_inspect.jpg │ ├── demo_melee.jpg │ ├── demo_stickybomb.jpg │ ├── demo_stickybomb_inspect.jpg │ ├── engineer_blank.jpg │ ├── engineer_gunslinger.jpg │ ├── engineer_pda_build.jpg │ ├── engineer_pda_destruct.jpg │ ├── engineer_pistol.jpg │ ├── engineer_pistol_inspect.jpg │ ├── engineer_pomson.jpg │ ├── engineer_shotgun.jpg │ ├── engineer_shotgun_inspect.jpg │ ├── engineer_toolbox.jpg │ ├── engineer_wrangler.jpg │ ├── engineer_wrench.jpg │ ├── engineer_wrench_inspect.jpg │ ├── heavy_blank.jpg │ ├── heavy_fists.jpg │ ├── heavy_minigun.jpg │ ├── heavy_minigun_inspect.jpg │ ├── heavy_sandvich.jpg │ ├── heavy_shotgun.jpg │ ├── heavy_shotgun_inspect.jpg │ ├── icon.ico │ ├── icon.png │ ├── icon_demo.png │ ├── icon_engie.png │ ├── icon_heavy.png │ ├── icon_medic.png │ ├── icon_pyro.png │ ├── icon_scout.png │ ├── icon_sniper.png │ ├── icon_soldier.png │ ├── icon_spy.png │ ├── medic_blank.jpg │ ├── medic_medigun.jpg │ ├── medic_medigun_inspect.jpg │ ├── medic_melee.jpg │ ├── medic_syringegun.jpg │ ├── preload_room.bsp │ ├── pyro_blank.jpg │ ├── pyro_flamethrower.jpg │ ├── pyro_flamethrower_inspect.jpg │ ├── pyro_flaregun.jpg │ ├── pyro_gaspasser.jpg │ ├── pyro_melee.jpg │ ├── pyro_shotgun.jpg │ ├── pyro_shotgun_inspect.jpg │ ├── pyro_thermalthruster.jpg │ ├── scout_blank.jpg │ ├── scout_drink.jpg │ ├── scout_fan.jpg │ ├── scout_melee.jpg │ ├── scout_milk.jpg │ ├── scout_pistol.jpg │ ├── scout_pistol_inspect.jpg │ ├── scout_push.jpg │ ├── scout_scattergun.jpg │ ├── scout_scattergun_inspect.jpg │ ├── scout_shortstop.jpg │ ├── sniper_blank.jpg │ ├── sniper_huntsman.jpg │ ├── sniper_jarate.jpg │ ├── sniper_melee.jpg │ ├── sniper_smg.jpg │ ├── sniper_smg_inspect.jpg │ ├── sniper_sniperrifle.jpg │ ├── sniper_sniperrifle_inspect.jpg │ ├── soldier_banner.jpg │ ├── soldier_bison.jpg │ ├── soldier_blank.jpg │ ├── soldier_melee.jpg │ ├── soldier_original.jpg │ ├── soldier_rocketlauncher.jpg │ ├── soldier_rocketlauncher_inspect.jpg │ ├── soldier_shotgun.jpg │ ├── soldier_shotgun_inspect.jpg │ ├── spy_blank.jpg │ ├── spy_deadringer.jpg │ ├── spy_disguisekit.jpg │ ├── spy_inviswatch.jpg │ ├── spy_knife.jpg │ ├── spy_knife_inspect.jpg │ ├── spy_revolver.jpg │ ├── spy_revolver_inspect.jpg │ └── spy_sapper.jpg │ ├── icon.ico │ └── test.ico ├── Releases ├── CompVMInstaller_1.0.0.exe ├── CompVMInstaller_1.1.0.exe ├── CompVMInstaller_1.2.0.exe ├── CompVMInstaller_1.3.0.exe ├── CompVMInstaller_1.3.1.exe ├── CompVMInstaller_1.3.2.exe └── CompVMInstaller_1.4.1.exe ├── changelog ├── icons ├── 2 │ ├── Leaderboard_class_demoman.png │ ├── Leaderboard_class_engineer.png │ ├── Leaderboard_class_heavy.png │ ├── Leaderboard_class_medic.png │ ├── Leaderboard_class_pyro.png │ ├── Leaderboard_class_scout.png │ ├── Leaderboard_class_sniper.png │ ├── Leaderboard_class_soldier.png │ └── Leaderboard_class_spy.png ├── icon.ico ├── icon.png ├── icon.psd ├── icon_demo.png ├── icon_engie.png ├── icon_heavy.png ├── icon_medic.png ├── icon_pyro.png ├── icon_resize.png ├── icon_scout.png ├── icon_sniper.png ├── icon_soldier.png └── icon_spy.png └── version /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/.gitignore -------------------------------------------------------------------------------- /Project/.vs/CompVMInstaller/v14/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/.vs/CompVMInstaller/v14/.suo -------------------------------------------------------------------------------- /Project/.vs/CompVMInstaller/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/.vs/CompVMInstaller/v15/.suo -------------------------------------------------------------------------------- /Project/.vs/CompVMInstaller/v15/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Project/.vs/CompVMInstaller/v15/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/.vs/CompVMInstaller/v15/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Project/.vs/CompetitiveViewmodelMaker/v14/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/.vs/CompetitiveViewmodelMaker/v14/.suo -------------------------------------------------------------------------------- /Project/CompVMInstaller.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller.sln -------------------------------------------------------------------------------- /Project/CompVMInstaller.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller.v12.suo -------------------------------------------------------------------------------- /Project/CompVMInstaller/AboutBox1.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/AboutBox1.Designer.vb -------------------------------------------------------------------------------- /Project/CompVMInstaller/AboutBox1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/AboutBox1.resx -------------------------------------------------------------------------------- /Project/CompVMInstaller/AboutBox1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/AboutBox1.vb -------------------------------------------------------------------------------- /Project/CompVMInstaller/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/App.config -------------------------------------------------------------------------------- /Project/CompVMInstaller/ApplicationEvents.vb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Project/CompVMInstaller/CompVMInstaller.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/CompVMInstaller.vbproj -------------------------------------------------------------------------------- /Project/CompVMInstaller/CompVMInstaller.vbproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/CompVMInstaller.vbproj.user -------------------------------------------------------------------------------- /Project/CompVMInstaller/Dialog1.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Dialog1.Designer.vb -------------------------------------------------------------------------------- /Project/CompVMInstaller/Dialog1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Dialog1.resx -------------------------------------------------------------------------------- /Project/CompVMInstaller/Dialog1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Dialog1.vb -------------------------------------------------------------------------------- /Project/CompVMInstaller/Form1.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Form1.Designer.vb -------------------------------------------------------------------------------- /Project/CompVMInstaller/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Form1.resx -------------------------------------------------------------------------------- /Project/CompVMInstaller/Form1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Form1.vb -------------------------------------------------------------------------------- /Project/CompVMInstaller/Form2.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Form2.Designer.vb -------------------------------------------------------------------------------- /Project/CompVMInstaller/Form2.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Form2.resx -------------------------------------------------------------------------------- /Project/CompVMInstaller/Form2.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Form2.vb -------------------------------------------------------------------------------- /Project/CompVMInstaller/My Project/Application.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/My Project/Application.Designer.vb -------------------------------------------------------------------------------- /Project/CompVMInstaller/My Project/Application.myapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/My Project/Application.myapp -------------------------------------------------------------------------------- /Project/CompVMInstaller/My Project/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/My Project/AssemblyInfo.vb -------------------------------------------------------------------------------- /Project/CompVMInstaller/My Project/Resources.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/My Project/Resources.Designer.vb -------------------------------------------------------------------------------- /Project/CompVMInstaller/My Project/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/My Project/Resources.resx -------------------------------------------------------------------------------- /Project/CompVMInstaller/My Project/Settings.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/My Project/Settings.Designer.vb -------------------------------------------------------------------------------- /Project/CompVMInstaller/My Project/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/My Project/Settings.settings -------------------------------------------------------------------------------- /Project/CompVMInstaller/My Project/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/My Project/app.manifest -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/animations.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/animations.zip -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/compviewmodelbannersmall.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/compviewmodelbannersmall.jpg -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/demo_blank.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/demo_blank.jpg -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/demo_grenadelauncher.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/demo_grenadelauncher.jpg -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/demo_grenadelauncher_inspect.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/demo_grenadelauncher_inspect.jpg -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/demo_melee.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/demo_melee.jpg -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/demo_stickybomb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/demo_stickybomb.jpg -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/demo_stickybomb_inspect.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/demo_stickybomb_inspect.jpg -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/engineer_blank.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/engineer_blank.jpg -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/engineer_gunslinger.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/engineer_gunslinger.jpg -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/engineer_pda_build.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/engineer_pda_build.jpg -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/engineer_pda_destruct.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/engineer_pda_destruct.jpg -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/engineer_pistol.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/engineer_pistol.jpg -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/engineer_pistol_inspect.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/engineer_pistol_inspect.jpg -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/engineer_pomson.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/engineer_pomson.jpg -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/engineer_shotgun.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/engineer_shotgun.jpg -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/engineer_shotgun_inspect.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/engineer_shotgun_inspect.jpg -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/engineer_toolbox.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/engineer_toolbox.jpg -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/engineer_wrangler.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/engineer_wrangler.jpg -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/engineer_wrench.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/engineer_wrench.jpg -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/engineer_wrench_inspect.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/engineer_wrench_inspect.jpg -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/heavy_blank.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/heavy_blank.jpg -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/heavy_fists.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/heavy_fists.jpg -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/heavy_minigun.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/heavy_minigun.jpg -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/heavy_minigun_inspect.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/heavy_minigun_inspect.jpg -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/heavy_sandvich.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/heavy_sandvich.jpg -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/heavy_shotgun.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/heavy_shotgun.jpg -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/heavy_shotgun_inspect.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/heavy_shotgun_inspect.jpg -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/icon.ico -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/icon.png -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/icon_demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/icon_demo.png -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/icon_engie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/icon_engie.png -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/icon_heavy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/icon_heavy.png -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/icon_medic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/icon_medic.png -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/icon_pyro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/icon_pyro.png -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/icon_scout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/icon_scout.png -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/icon_sniper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/icon_sniper.png -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/icon_soldier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/icon_soldier.png -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/icon_spy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/icon_spy.png -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/medic_blank.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/medic_blank.jpg -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/medic_medigun.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/medic_medigun.jpg -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/medic_medigun_inspect.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/medic_medigun_inspect.jpg -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/medic_melee.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/medic_melee.jpg -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/medic_syringegun.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/medic_syringegun.jpg -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/preload_room.bsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/preload_room.bsp -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/pyro_blank.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/pyro_blank.jpg -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/pyro_flamethrower.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/pyro_flamethrower.jpg -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/pyro_flamethrower_inspect.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/pyro_flamethrower_inspect.jpg -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/pyro_flaregun.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/pyro_flaregun.jpg -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/pyro_gaspasser.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/pyro_gaspasser.jpg -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/pyro_melee.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/pyro_melee.jpg -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/pyro_shotgun.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/pyro_shotgun.jpg -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/pyro_shotgun_inspect.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/pyro_shotgun_inspect.jpg -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/pyro_thermalthruster.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/pyro_thermalthruster.jpg -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/scout_blank.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/scout_blank.jpg -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/scout_drink.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/scout_drink.jpg -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/scout_fan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/scout_fan.jpg -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/scout_melee.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/scout_melee.jpg -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/scout_milk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/scout_milk.jpg -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/scout_pistol.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/scout_pistol.jpg -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/scout_pistol_inspect.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/scout_pistol_inspect.jpg -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/scout_push.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/scout_push.jpg -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/scout_scattergun.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/scout_scattergun.jpg -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/scout_scattergun_inspect.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/scout_scattergun_inspect.jpg -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/scout_shortstop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/scout_shortstop.jpg -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/sniper_blank.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/sniper_blank.jpg -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/sniper_huntsman.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/sniper_huntsman.jpg -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/sniper_jarate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/sniper_jarate.jpg -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/sniper_melee.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/sniper_melee.jpg -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/sniper_smg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/sniper_smg.jpg -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/sniper_smg_inspect.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/sniper_smg_inspect.jpg -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/sniper_sniperrifle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/sniper_sniperrifle.jpg -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/sniper_sniperrifle_inspect.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/sniper_sniperrifle_inspect.jpg -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/soldier_banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/soldier_banner.jpg -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/soldier_bison.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/soldier_bison.jpg -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/soldier_blank.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/soldier_blank.jpg -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/soldier_melee.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/soldier_melee.jpg -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/soldier_original.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/soldier_original.jpg -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/soldier_rocketlauncher.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/soldier_rocketlauncher.jpg -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/soldier_rocketlauncher_inspect.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/soldier_rocketlauncher_inspect.jpg -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/soldier_shotgun.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/soldier_shotgun.jpg -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/soldier_shotgun_inspect.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/soldier_shotgun_inspect.jpg -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/spy_blank.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/spy_blank.jpg -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/spy_deadringer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/spy_deadringer.jpg -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/spy_disguisekit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/spy_disguisekit.jpg -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/spy_inviswatch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/spy_inviswatch.jpg -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/spy_knife.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/spy_knife.jpg -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/spy_knife_inspect.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/spy_knife_inspect.jpg -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/spy_revolver.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/spy_revolver.jpg -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/spy_revolver_inspect.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/spy_revolver_inspect.jpg -------------------------------------------------------------------------------- /Project/CompVMInstaller/Resources/spy_sapper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/Resources/spy_sapper.jpg -------------------------------------------------------------------------------- /Project/CompVMInstaller/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/icon.ico -------------------------------------------------------------------------------- /Project/CompVMInstaller/test.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Project/CompVMInstaller/test.ico -------------------------------------------------------------------------------- /Releases/CompVMInstaller_1.0.0.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Releases/CompVMInstaller_1.0.0.exe -------------------------------------------------------------------------------- /Releases/CompVMInstaller_1.1.0.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Releases/CompVMInstaller_1.1.0.exe -------------------------------------------------------------------------------- /Releases/CompVMInstaller_1.2.0.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Releases/CompVMInstaller_1.2.0.exe -------------------------------------------------------------------------------- /Releases/CompVMInstaller_1.3.0.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Releases/CompVMInstaller_1.3.0.exe -------------------------------------------------------------------------------- /Releases/CompVMInstaller_1.3.1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Releases/CompVMInstaller_1.3.1.exe -------------------------------------------------------------------------------- /Releases/CompVMInstaller_1.3.2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Releases/CompVMInstaller_1.3.2.exe -------------------------------------------------------------------------------- /Releases/CompVMInstaller_1.4.1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/Releases/CompVMInstaller_1.4.1.exe -------------------------------------------------------------------------------- /changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/changelog -------------------------------------------------------------------------------- /icons/2/Leaderboard_class_demoman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/icons/2/Leaderboard_class_demoman.png -------------------------------------------------------------------------------- /icons/2/Leaderboard_class_engineer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/icons/2/Leaderboard_class_engineer.png -------------------------------------------------------------------------------- /icons/2/Leaderboard_class_heavy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/icons/2/Leaderboard_class_heavy.png -------------------------------------------------------------------------------- /icons/2/Leaderboard_class_medic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/icons/2/Leaderboard_class_medic.png -------------------------------------------------------------------------------- /icons/2/Leaderboard_class_pyro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/icons/2/Leaderboard_class_pyro.png -------------------------------------------------------------------------------- /icons/2/Leaderboard_class_scout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/icons/2/Leaderboard_class_scout.png -------------------------------------------------------------------------------- /icons/2/Leaderboard_class_sniper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/icons/2/Leaderboard_class_sniper.png -------------------------------------------------------------------------------- /icons/2/Leaderboard_class_soldier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/icons/2/Leaderboard_class_soldier.png -------------------------------------------------------------------------------- /icons/2/Leaderboard_class_spy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/icons/2/Leaderboard_class_spy.png -------------------------------------------------------------------------------- /icons/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/icons/icon.ico -------------------------------------------------------------------------------- /icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/icons/icon.png -------------------------------------------------------------------------------- /icons/icon.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/icons/icon.psd -------------------------------------------------------------------------------- /icons/icon_demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/icons/icon_demo.png -------------------------------------------------------------------------------- /icons/icon_engie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/icons/icon_engie.png -------------------------------------------------------------------------------- /icons/icon_heavy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/icons/icon_heavy.png -------------------------------------------------------------------------------- /icons/icon_medic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/icons/icon_medic.png -------------------------------------------------------------------------------- /icons/icon_pyro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/icons/icon_pyro.png -------------------------------------------------------------------------------- /icons/icon_resize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/icons/icon_resize.png -------------------------------------------------------------------------------- /icons/icon_scout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/icons/icon_scout.png -------------------------------------------------------------------------------- /icons/icon_sniper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/icons/icon_sniper.png -------------------------------------------------------------------------------- /icons/icon_soldier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/icons/icon_soldier.png -------------------------------------------------------------------------------- /icons/icon_spy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yttrium-tYcLief/CompVMInstaller/HEAD/icons/icon_spy.png -------------------------------------------------------------------------------- /version: -------------------------------------------------------------------------------- 1 | 1.4.1 --------------------------------------------------------------------------------