├── .github ├── dependabot.yml └── workflows │ ├── check-format.yml │ ├── macos.yml │ ├── premake5-ubuntu.yml │ ├── premake5-windows.yml │ ├── release-windows.yml │ └── ubuntu.yml ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── License.md ├── README.md ├── data ├── ABOUT ├── AUTHORS ├── CHANGELOG ├── COPYING ├── COPYING.README ├── CrashRpt │ └── Privacy Policy.html ├── MANUAL ├── buildings │ ├── barracks │ │ ├── data.json │ │ ├── img.pcx │ │ ├── info.pcx │ │ ├── shw.pcx │ │ └── video.pcx │ ├── block │ │ ├── data.json │ │ ├── img.pcx │ │ ├── info.pcx │ │ ├── shw.pcx │ │ └── video.pcx │ ├── bridge │ │ ├── data.json │ │ ├── img.pcx │ │ ├── info.pcx │ │ ├── shw.pcx │ │ └── video.pcx │ ├── buildings.json │ ├── connector │ │ ├── data.json │ │ ├── img.pcx │ │ ├── info.pcx │ │ ├── shw.pcx │ │ └── video.pcx │ ├── depot │ │ ├── data.json │ │ ├── img.pcx │ │ ├── info.pcx │ │ ├── shw.pcx │ │ └── video.pcx │ ├── dirt_big.pcx │ ├── dirt_big_shw.pcx │ ├── dirt_small.pcx │ ├── dirt_small_shw.pcx │ ├── dock │ │ ├── data.json │ │ ├── img.pcx │ │ ├── info.pcx │ │ ├── shw.pcx │ │ └── video.pcx │ ├── ecosphere │ │ ├── data.json │ │ ├── effect.pcx │ │ ├── effect_org.pcx │ │ ├── img.pcx │ │ ├── info.pcx │ │ ├── shw.pcx │ │ └── video.pcx │ ├── energy_big │ │ ├── data.json │ │ ├── effect.pcx │ │ ├── effect_org.pcx │ │ ├── img.pcx │ │ ├── info.pcx │ │ ├── shw.pcx │ │ └── video.pcx │ ├── energy_small │ │ ├── data.json │ │ ├── effect.pcx │ │ ├── effect_org.pcx │ │ ├── img.pcx │ │ ├── info.pcx │ │ ├── shw.pcx │ │ └── video.pcx │ ├── fac_air │ │ ├── data.json │ │ ├── effect.pcx │ │ ├── effect_org.pcx │ │ ├── img.pcx │ │ ├── info.pcx │ │ ├── shw.pcx │ │ └── video.pcx │ ├── fac_alien │ │ ├── data.json │ │ ├── effect.pcx │ │ ├── effect_org.pcx │ │ ├── img.pcx │ │ ├── info.pcx │ │ ├── shw.pcx │ │ └── video.pcx │ ├── fac_big │ │ ├── data.json │ │ ├── effect.pcx │ │ ├── effect_org.pcx │ │ ├── img.pcx │ │ ├── info.pcx │ │ ├── shw.pcx │ │ └── video.pcx │ ├── fac_ship │ │ ├── data.json │ │ ├── effect.pcx │ │ ├── effect_org.pcx │ │ ├── img.pcx │ │ ├── info.pcx │ │ ├── shw.pcx │ │ └── video.pcx │ ├── fac_small │ │ ├── data.json │ │ ├── effect.pcx │ │ ├── effect_org.pcx │ │ ├── img.pcx │ │ ├── info.pcx │ │ ├── shw.pcx │ │ └── video.pcx │ ├── goldraff │ │ ├── data.json │ │ ├── effect.pcx │ │ ├── effect_org.pcx │ │ ├── img.pcx │ │ ├── info.pcx │ │ ├── shw.pcx │ │ └── video.pcx │ ├── gun_aa │ │ ├── data.json │ │ ├── img.pcx │ │ ├── info.pcx │ │ ├── shw.pcx │ │ └── video.pcx │ ├── gun_ari │ │ ├── data.json │ │ ├── img.pcx │ │ ├── info.pcx │ │ ├── shw.pcx │ │ └── video.pcx │ ├── gun_missel │ │ ├── data.json │ │ ├── img.pcx │ │ ├── info.pcx │ │ ├── shw.pcx │ │ └── video.pcx │ ├── gun_turret │ │ ├── data.json │ │ ├── img.pcx │ │ ├── info.pcx │ │ ├── shw.pcx │ │ └── video.pcx │ ├── habitat │ │ ├── data.json │ │ ├── effect.pcx │ │ ├── effect_org.pcx │ │ ├── img.pcx │ │ ├── info.pcx │ │ ├── shw.pcx │ │ └── video.pcx │ ├── hangar │ │ ├── data.json │ │ ├── effect.pcx │ │ ├── effect_org.pcx │ │ ├── img.pcx │ │ ├── info.pcx │ │ ├── shw.pcx │ │ └── video.pcx │ ├── landmine │ │ ├── data.json │ │ ├── img.pcx │ │ ├── info.pcx │ │ ├── shw.pcx │ │ └── video.pcx │ ├── mine │ │ ├── data.json │ │ ├── effect.pcx │ │ ├── effect_org.pcx │ │ ├── img.pcx │ │ ├── info.pcx │ │ ├── roof.pcx │ │ ├── shw.pcx │ │ └── video.pcx │ ├── mine_deep │ │ ├── effect.pcx │ │ └── effect_org.pcx │ ├── pad │ │ ├── data.json │ │ ├── effect.pcx │ │ ├── effect_org.pcx │ │ ├── img.pcx │ │ ├── info.pcx │ │ ├── shw.pcx │ │ └── video.pcx │ ├── platform │ │ ├── data.json │ │ ├── img.pcx │ │ ├── info.pcx │ │ ├── shw.pcx │ │ └── video.pcx │ ├── radar │ │ ├── data.json │ │ ├── img.pcx │ │ ├── info.pcx │ │ ├── shw.pcx │ │ └── video.pcx │ ├── research │ │ ├── data.json │ │ ├── effect.pcx │ │ ├── effect_org.pcx │ │ ├── img.pcx │ │ ├── info.pcx │ │ ├── shw.pcx │ │ └── video.pcx │ ├── road │ │ ├── data.json │ │ ├── img.pcx │ │ ├── info.pcx │ │ ├── shw.pcx │ │ └── video.pcx │ ├── seamine │ │ ├── data.json │ │ ├── img.pcx │ │ ├── info.pcx │ │ ├── shw.pcx │ │ └── video.pcx │ ├── shield │ │ ├── effect.pcx │ │ └── effect_org.pcx │ ├── storage_gold │ │ ├── data.json │ │ ├── img.pcx │ │ ├── info.pcx │ │ ├── shw.pcx │ │ └── video.pcx │ ├── storage_metal │ │ ├── data.json │ │ ├── img.pcx │ │ ├── info.pcx │ │ ├── shw.pcx │ │ └── video.pcx │ ├── storage_oil │ │ ├── data.json │ │ ├── img.pcx │ │ ├── info.pcx │ │ ├── shw.pcx │ │ └── video.pcx │ └── training │ │ ├── data.json │ │ ├── effect.pcx │ │ ├── effect_org.pcx │ │ ├── img.pcx │ │ ├── info.pcx │ │ ├── shw.pcx │ │ └── video.pcx ├── clans.json ├── fonts │ ├── latin_big.pcx │ ├── latin_big_gold.pcx │ ├── latin_big_gold_iso-8559-1.pcx │ ├── latin_big_gold_iso-8559-2.pcx │ ├── latin_big_iso-8559-1.pcx │ ├── latin_big_iso-8559-2.pcx │ ├── latin_big_iso-8559-5.pcx │ ├── latin_normal.pcx │ ├── latin_normal_iso-8559-1.pcx │ ├── latin_normal_iso-8559-2.pcx │ ├── latin_normal_iso-8559-5.pcx │ ├── latin_small.pcx │ ├── latin_small_iso-8559-1.pcx │ ├── latin_small_iso-8559-2.pcx │ └── latin_small_iso-8559-5.pcx ├── fx │ ├── absorb.pcx │ ├── corpse.pcx │ ├── dark_smoke.pcx │ ├── explo_air.pcx │ ├── explo_big.pcx │ ├── explo_small.pcx │ ├── explo_water.pcx │ ├── hit.pcx │ ├── muzzle_big.pcx │ ├── muzzle_med.pcx │ ├── muzzle_small.pcx │ ├── rocket.pcx │ ├── smoke.pcx │ ├── torpedo.pcx │ └── tracks.pcx ├── gfx │ ├── activate.pcx │ ├── activate_field.pcx │ ├── attack.pcx │ ├── attack_oor.pcx │ ├── band_big.pcx │ ├── band_cur.pcx │ ├── band_small.pcx │ ├── big_beton.pcx │ ├── build_screen.pcx │ ├── cl_aqua.pcx │ ├── cl_blue.pcx │ ├── cl_green.pcx │ ├── cl_grey.pcx │ ├── cl_orange.pcx │ ├── cl_purple.pcx │ ├── cl_red.pcx │ ├── cl_yellow.pcx │ ├── clanlogo1.pcx │ ├── clanlogo2.pcx │ ├── clanlogo3.pcx │ ├── clanlogo4.pcx │ ├── clanlogo5.pcx │ ├── clanlogo6.pcx │ ├── clanlogo7.pcx │ ├── clanlogo8.pcx │ ├── clanselection.pcx │ ├── customgame_menu.pcx │ ├── destruction.pcx │ ├── destruction_glas.pcx │ ├── dialog.pcx │ ├── dialog2.pcx │ ├── dialog3.pcx │ ├── dialog4.pcx │ ├── dialog5.pcx │ ├── dialog6.pcx │ ├── disable.pcx │ ├── edepot.pcx │ ├── edock.pcx │ ├── ehangar.pcx │ ├── endgame │ │ └── endgame1.pcx │ ├── fac_build_screen.pcx │ ├── fuel.pcx │ ├── gold.pcx │ ├── hand.pcx │ ├── hangar.pcx │ ├── help.pcx │ ├── help_screen.pcx │ ├── hotseatplayers.pcx │ ├── hud_bottom.pcx │ ├── hud_chatbox.pcx │ ├── hud_extra_players.pcx │ ├── hud_left.pcx │ ├── hud_right.pcx │ ├── hud_stuff.pcx │ ├── hud_top.pcx │ ├── load.pcx │ ├── load_save_menu.pcx │ ├── logo.pcx │ ├── main.pcx │ ├── menu_buttons.pcx │ ├── menu_stuff.pcx │ ├── mine_manager.pcx │ ├── move.pcx │ ├── move_draft.pcx │ ├── multi.pcx │ ├── muni.pcx │ ├── no.pcx │ ├── object_menu2.pcx │ ├── options.pcx │ ├── panel_bottom.pcx │ ├── panel_top.pcx │ ├── pf_1.pcx │ ├── pf_2.pcx │ ├── pf_3.pcx │ ├── pf_4.pcx │ ├── pf_6.pcx │ ├── pf_7.pcx │ ├── pf_8.pcx │ ├── pf_9.pcx │ ├── planet_select.pcx │ ├── player_human.pcx │ ├── player_none.pcx │ ├── player_pc.pcx │ ├── player_ready.pcx │ ├── repair.pcx │ ├── reports.pcx │ ├── res.pcx │ ├── research.pcx │ ├── select.pcx │ ├── steal.pcx │ ├── storage.pcx │ ├── storage_ground.pcx │ ├── transf.pcx │ ├── transfer.pcx │ └── upgrade.pcx ├── init.pcx ├── languages │ ├── ca │ │ ├── clans.po │ │ ├── maxr.po │ │ └── units.po │ ├── clans.pot │ ├── de │ │ ├── clans.po │ │ ├── maxr.po │ │ └── units.po │ ├── en │ │ ├── clans.po │ │ ├── maxr.po │ │ └── units.po │ ├── es │ │ ├── clans.po │ │ ├── maxr.po │ │ └── units.po │ ├── fr │ │ ├── clans.po │ │ ├── maxr.po │ │ └── units.po │ ├── hu │ │ ├── clans.po │ │ ├── maxr.po │ │ └── units.po │ ├── maxr.pot │ ├── nl │ │ ├── clans.po │ │ ├── maxr.po │ │ └── units.po │ ├── readme.md │ ├── ru │ │ ├── clans.po │ │ ├── maxr.po │ │ └── units.po │ ├── sl │ │ ├── clans.po │ │ ├── maxr.po │ │ └── units.po │ ├── units.pot │ └── update_translations.sh ├── maps │ ├── Delta.wrl │ ├── Donuts.wrl │ ├── Lava.wrl │ ├── Mushroom.wrl │ └── Three Isles.wrl ├── maxr.bmp ├── maxr.ico ├── maxr.png ├── music │ └── musics.json ├── mve │ └── .empty ├── sounds │ ├── Chat.ogg │ ├── absorb.ogg │ ├── arm.ogg │ └── dummy.ogg ├── vehicles │ ├── air_transport │ │ ├── data.json │ │ ├── img0.pcx │ │ ├── img1.pcx │ │ ├── img2.pcx │ │ ├── img3.pcx │ │ ├── img4.pcx │ │ ├── img5.pcx │ │ ├── img6.pcx │ │ ├── img7.pcx │ │ ├── info.pcx │ │ ├── shw0.pcx │ │ ├── shw1.pcx │ │ ├── shw2.pcx │ │ ├── shw3.pcx │ │ ├── shw4.pcx │ │ ├── shw5.pcx │ │ ├── shw6.pcx │ │ ├── shw7.pcx │ │ ├── store.pcx │ │ └── video.flc │ ├── alien_assault │ │ ├── data.json │ │ ├── img0.pcx │ │ ├── img1.pcx │ │ ├── img2.pcx │ │ ├── img3.pcx │ │ ├── img4.pcx │ │ ├── img5.pcx │ │ ├── img6.pcx │ │ ├── img7.pcx │ │ ├── info.pcx │ │ ├── shw0.pcx │ │ ├── shw1.pcx │ │ ├── shw2.pcx │ │ ├── shw3.pcx │ │ ├── shw4.pcx │ │ ├── shw5.pcx │ │ ├── shw6.pcx │ │ ├── shw7.pcx │ │ ├── store.pcx │ │ └── video.flc │ ├── alien_plane │ │ ├── data.json │ │ ├── img0.pcx │ │ ├── img1.pcx │ │ ├── img2.pcx │ │ ├── img3.pcx │ │ ├── img4.pcx │ │ ├── img5.pcx │ │ ├── img6.pcx │ │ ├── img7.pcx │ │ ├── info.pcx │ │ ├── shw0.pcx │ │ ├── shw1.pcx │ │ ├── shw2.pcx │ │ ├── shw3.pcx │ │ ├── shw4.pcx │ │ ├── shw5.pcx │ │ ├── shw6.pcx │ │ ├── shw7.pcx │ │ ├── store.pcx │ │ └── video.flc │ ├── alien_ship │ │ ├── data.json │ │ ├── img0.pcx │ │ ├── img1.pcx │ │ ├── img2.pcx │ │ ├── img3.pcx │ │ ├── img4.pcx │ │ ├── img5.pcx │ │ ├── img6.pcx │ │ ├── img7.pcx │ │ ├── info.pcx │ │ ├── shw0.pcx │ │ ├── shw1.pcx │ │ ├── shw2.pcx │ │ ├── shw3.pcx │ │ ├── shw4.pcx │ │ ├── shw5.pcx │ │ ├── shw6.pcx │ │ ├── shw7.pcx │ │ ├── store.pcx │ │ └── video.flc │ ├── alien_tank │ │ ├── data.json │ │ ├── img0.pcx │ │ ├── img1.pcx │ │ ├── img2.pcx │ │ ├── img3.pcx │ │ ├── img4.pcx │ │ ├── img5.pcx │ │ ├── img6.pcx │ │ ├── img7.pcx │ │ ├── info.pcx │ │ ├── shw0.pcx │ │ ├── shw1.pcx │ │ ├── shw2.pcx │ │ ├── shw3.pcx │ │ ├── shw4.pcx │ │ ├── shw5.pcx │ │ ├── shw6.pcx │ │ ├── shw7.pcx │ │ ├── store.pcx │ │ └── video.flc │ ├── apc │ │ ├── data.json │ │ ├── img0.pcx │ │ ├── img1.pcx │ │ ├── img2.pcx │ │ ├── img3.pcx │ │ ├── img4.pcx │ │ ├── img5.pcx │ │ ├── img6.pcx │ │ ├── img7.pcx │ │ ├── info.pcx │ │ ├── shw0.pcx │ │ ├── shw1.pcx │ │ ├── shw2.pcx │ │ ├── shw3.pcx │ │ ├── shw4.pcx │ │ ├── shw5.pcx │ │ ├── shw6.pcx │ │ ├── shw7.pcx │ │ ├── store.pcx │ │ └── video.flc │ ├── assault │ │ ├── data.json │ │ ├── img0.pcx │ │ ├── img1.pcx │ │ ├── img2.pcx │ │ ├── img3.pcx │ │ ├── img4.pcx │ │ ├── img5.pcx │ │ ├── img6.pcx │ │ ├── img7.pcx │ │ ├── info.pcx │ │ ├── shw0.pcx │ │ ├── shw1.pcx │ │ ├── shw2.pcx │ │ ├── shw3.pcx │ │ ├── shw4.pcx │ │ ├── shw5.pcx │ │ ├── shw6.pcx │ │ ├── shw7.pcx │ │ ├── store.pcx │ │ └── video.flc │ ├── awac │ │ ├── data.json │ │ ├── drive.ogg │ │ ├── img0.pcx │ │ ├── img1.pcx │ │ ├── img2.pcx │ │ ├── img3.pcx │ │ ├── img4.pcx │ │ ├── img5.pcx │ │ ├── img6.pcx │ │ ├── img7.pcx │ │ ├── info.pcx │ │ ├── overlay.pcx │ │ ├── shw0.pcx │ │ ├── shw1.pcx │ │ ├── shw2.pcx │ │ ├── shw3.pcx │ │ ├── shw4.pcx │ │ ├── shw5.pcx │ │ ├── shw6.pcx │ │ ├── shw7.pcx │ │ ├── start.ogg │ │ ├── stop.ogg │ │ ├── store.pcx │ │ ├── video.flc │ │ └── wait.ogg │ ├── bomber │ │ ├── data.json │ │ ├── img0.pcx │ │ ├── img1.pcx │ │ ├── img2.pcx │ │ ├── img3.pcx │ │ ├── img4.pcx │ │ ├── img5.pcx │ │ ├── img6.pcx │ │ ├── img7.pcx │ │ ├── info.pcx │ │ ├── shw0.pcx │ │ ├── shw1.pcx │ │ ├── shw2.pcx │ │ ├── shw3.pcx │ │ ├── shw4.pcx │ │ ├── shw5.pcx │ │ ├── shw6.pcx │ │ ├── shw7.pcx │ │ ├── store.pcx │ │ └── video.flc │ ├── bulldozer │ │ ├── clear_big.pcx │ │ ├── clear_big_shw.pcx │ │ ├── clear_small.pcx │ │ ├── clear_small_shw.pcx │ │ ├── data.json │ │ ├── img0.pcx │ │ ├── img1.pcx │ │ ├── img2.pcx │ │ ├── img3.pcx │ │ ├── img4.pcx │ │ ├── img5.pcx │ │ ├── img6.pcx │ │ ├── img7.pcx │ │ ├── info.pcx │ │ ├── shw0.pcx │ │ ├── shw1.pcx │ │ ├── shw2.pcx │ │ ├── shw3.pcx │ │ ├── shw4.pcx │ │ ├── shw5.pcx │ │ ├── shw6.pcx │ │ ├── shw7.pcx │ │ ├── store.pcx │ │ └── video.flc │ ├── cargoship │ │ ├── data.json │ │ ├── img0.pcx │ │ ├── img1.pcx │ │ ├── img2.pcx │ │ ├── img3.pcx │ │ ├── img4.pcx │ │ ├── img5.pcx │ │ ├── img6.pcx │ │ ├── img7.pcx │ │ ├── info.pcx │ │ ├── shw0.pcx │ │ ├── shw1.pcx │ │ ├── shw2.pcx │ │ ├── shw3.pcx │ │ ├── shw4.pcx │ │ ├── shw5.pcx │ │ ├── shw6.pcx │ │ ├── shw7.pcx │ │ ├── store.pcx │ │ └── video.flc │ ├── cluster │ │ ├── data.json │ │ ├── img0.pcx │ │ ├── img1.pcx │ │ ├── img2.pcx │ │ ├── img3.pcx │ │ ├── img4.pcx │ │ ├── img5.pcx │ │ ├── img6.pcx │ │ ├── img7.pcx │ │ ├── info.pcx │ │ ├── shw0.pcx │ │ ├── shw1.pcx │ │ ├── shw2.pcx │ │ ├── shw3.pcx │ │ ├── shw4.pcx │ │ ├── shw5.pcx │ │ ├── shw6.pcx │ │ ├── shw7.pcx │ │ ├── store.pcx │ │ └── video.flc │ ├── commando │ │ ├── data.json │ │ ├── img0_00.pcx │ │ ├── img0_01.pcx │ │ ├── img0_02.pcx │ │ ├── img0_03.pcx │ │ ├── img0_04.pcx │ │ ├── img0_05.pcx │ │ ├── img0_06.pcx │ │ ├── img0_07.pcx │ │ ├── img0_08.pcx │ │ ├── img0_09.pcx │ │ ├── img0_10.pcx │ │ ├── img0_11.pcx │ │ ├── img0_12.pcx │ │ ├── img1_00.pcx │ │ ├── img1_01.pcx │ │ ├── img1_02.pcx │ │ ├── img1_03.pcx │ │ ├── img1_04.pcx │ │ ├── img1_05.pcx │ │ ├── img1_06.pcx │ │ ├── img1_07.pcx │ │ ├── img1_08.pcx │ │ ├── img1_09.pcx │ │ ├── img1_10.pcx │ │ ├── img1_11.pcx │ │ ├── img1_12.pcx │ │ ├── img2_00.pcx │ │ ├── img2_01.pcx │ │ ├── img2_02.pcx │ │ ├── img2_03.pcx │ │ ├── img2_04.pcx │ │ ├── img2_05.pcx │ │ ├── img2_06.pcx │ │ ├── img2_07.pcx │ │ ├── img2_08.pcx │ │ ├── img2_09.pcx │ │ ├── img2_10.pcx │ │ ├── img2_11.pcx │ │ ├── img2_12.pcx │ │ ├── img3_00.pcx │ │ ├── img3_01.pcx │ │ ├── img3_02.pcx │ │ ├── img3_03.pcx │ │ ├── img3_04.pcx │ │ ├── img3_05.pcx │ │ ├── img3_06.pcx │ │ ├── img3_07.pcx │ │ ├── img3_08.pcx │ │ ├── img3_09.pcx │ │ ├── img3_10.pcx │ │ ├── img3_11.pcx │ │ ├── img3_12.pcx │ │ ├── img4_00.pcx │ │ ├── img4_01.pcx │ │ ├── img4_02.pcx │ │ ├── img4_03.pcx │ │ ├── img4_04.pcx │ │ ├── img4_05.pcx │ │ ├── img4_06.pcx │ │ ├── img4_07.pcx │ │ ├── img4_08.pcx │ │ ├── img4_09.pcx │ │ ├── img4_10.pcx │ │ ├── img4_11.pcx │ │ ├── img4_12.pcx │ │ ├── img5_00.pcx │ │ ├── img5_01.pcx │ │ ├── img5_02.pcx │ │ ├── img5_03.pcx │ │ ├── img5_04.pcx │ │ ├── img5_05.pcx │ │ ├── img5_06.pcx │ │ ├── img5_07.pcx │ │ ├── img5_08.pcx │ │ ├── img5_09.pcx │ │ ├── img5_10.pcx │ │ ├── img5_11.pcx │ │ ├── img5_12.pcx │ │ ├── img6_00.pcx │ │ ├── img6_01.pcx │ │ ├── img6_02.pcx │ │ ├── img6_03.pcx │ │ ├── img6_04.pcx │ │ ├── img6_05.pcx │ │ ├── img6_06.pcx │ │ ├── img6_07.pcx │ │ ├── img6_08.pcx │ │ ├── img6_09.pcx │ │ ├── img6_10.pcx │ │ ├── img6_11.pcx │ │ ├── img6_12.pcx │ │ ├── img7_00.pcx │ │ ├── img7_01.pcx │ │ ├── img7_02.pcx │ │ ├── img7_03.pcx │ │ ├── img7_04.pcx │ │ ├── img7_05.pcx │ │ ├── img7_06.pcx │ │ ├── img7_07.pcx │ │ ├── img7_08.pcx │ │ ├── img7_09.pcx │ │ ├── img7_10.pcx │ │ ├── img7_11.pcx │ │ ├── img7_12.pcx │ │ ├── info.pcx │ │ ├── store.pcx │ │ └── video.flc │ ├── corvet │ │ ├── data.json │ │ ├── img0.pcx │ │ ├── img1.pcx │ │ ├── img2.pcx │ │ ├── img3.pcx │ │ ├── img4.pcx │ │ ├── img5.pcx │ │ ├── img6.pcx │ │ ├── img7.pcx │ │ ├── info.pcx │ │ ├── shw0.pcx │ │ ├── shw1.pcx │ │ ├── shw2.pcx │ │ ├── shw3.pcx │ │ ├── shw4.pcx │ │ ├── shw5.pcx │ │ ├── shw6.pcx │ │ ├── shw7.pcx │ │ ├── store.pcx │ │ └── video.flc │ ├── escort │ │ ├── data.json │ │ ├── img0.pcx │ │ ├── img1.pcx │ │ ├── img2.pcx │ │ ├── img3.pcx │ │ ├── img4.pcx │ │ ├── img5.pcx │ │ ├── img6.pcx │ │ ├── img7.pcx │ │ ├── info.pcx │ │ ├── shw0.pcx │ │ ├── shw1.pcx │ │ ├── shw2.pcx │ │ ├── shw3.pcx │ │ ├── shw4.pcx │ │ ├── shw5.pcx │ │ ├── shw6.pcx │ │ ├── shw7.pcx │ │ ├── store.pcx │ │ └── video.flc │ ├── fighter │ │ ├── data.json │ │ ├── img0.pcx │ │ ├── img1.pcx │ │ ├── img2.pcx │ │ ├── img3.pcx │ │ ├── img4.pcx │ │ ├── img5.pcx │ │ ├── img6.pcx │ │ ├── img7.pcx │ │ ├── info.pcx │ │ ├── shw0.pcx │ │ ├── shw1.pcx │ │ ├── shw2.pcx │ │ ├── shw3.pcx │ │ ├── shw4.pcx │ │ ├── shw5.pcx │ │ ├── shw6.pcx │ │ ├── shw7.pcx │ │ ├── store.pcx │ │ └── video.flc │ ├── gunboat │ │ ├── data.json │ │ ├── img0.pcx │ │ ├── img1.pcx │ │ ├── img2.pcx │ │ ├── img3.pcx │ │ ├── img4.pcx │ │ ├── img5.pcx │ │ ├── img6.pcx │ │ ├── img7.pcx │ │ ├── info.pcx │ │ ├── shw0.pcx │ │ ├── shw1.pcx │ │ ├── shw2.pcx │ │ ├── shw3.pcx │ │ ├── shw4.pcx │ │ ├── shw5.pcx │ │ ├── shw6.pcx │ │ ├── shw7.pcx │ │ ├── store.pcx │ │ └── video.flc │ ├── infantery │ │ ├── data.json │ │ ├── img0_00.pcx │ │ ├── img0_01.pcx │ │ ├── img0_02.pcx │ │ ├── img0_03.pcx │ │ ├── img0_04.pcx │ │ ├── img0_05.pcx │ │ ├── img0_06.pcx │ │ ├── img0_07.pcx │ │ ├── img0_08.pcx │ │ ├── img0_09.pcx │ │ ├── img0_10.pcx │ │ ├── img0_11.pcx │ │ ├── img0_12.pcx │ │ ├── img1_00.pcx │ │ ├── img1_01.pcx │ │ ├── img1_02.pcx │ │ ├── img1_03.pcx │ │ ├── img1_04.pcx │ │ ├── img1_05.pcx │ │ ├── img1_06.pcx │ │ ├── img1_07.pcx │ │ ├── img1_08.pcx │ │ ├── img1_09.pcx │ │ ├── img1_10.pcx │ │ ├── img1_11.pcx │ │ ├── img1_12.pcx │ │ ├── img2_00.pcx │ │ ├── img2_01.pcx │ │ ├── img2_02.pcx │ │ ├── img2_03.pcx │ │ ├── img2_04.pcx │ │ ├── img2_05.pcx │ │ ├── img2_06.pcx │ │ ├── img2_07.pcx │ │ ├── img2_08.pcx │ │ ├── img2_09.pcx │ │ ├── img2_10.pcx │ │ ├── img2_11.pcx │ │ ├── img2_12.pcx │ │ ├── img3_00.pcx │ │ ├── img3_01.pcx │ │ ├── img3_02.pcx │ │ ├── img3_03.pcx │ │ ├── img3_04.pcx │ │ ├── img3_05.pcx │ │ ├── img3_06.pcx │ │ ├── img3_07.pcx │ │ ├── img3_08.pcx │ │ ├── img3_09.pcx │ │ ├── img3_10.pcx │ │ ├── img3_11.pcx │ │ ├── img3_12.pcx │ │ ├── img4_00.pcx │ │ ├── img4_01.pcx │ │ ├── img4_02.pcx │ │ ├── img4_03.pcx │ │ ├── img4_04.pcx │ │ ├── img4_05.pcx │ │ ├── img4_06.pcx │ │ ├── img4_07.pcx │ │ ├── img4_08.pcx │ │ ├── img4_09.pcx │ │ ├── img4_10.pcx │ │ ├── img4_11.pcx │ │ ├── img4_12.pcx │ │ ├── img5_00.pcx │ │ ├── img5_01.pcx │ │ ├── img5_02.pcx │ │ ├── img5_03.pcx │ │ ├── img5_04.pcx │ │ ├── img5_05.pcx │ │ ├── img5_06.pcx │ │ ├── img5_07.pcx │ │ ├── img5_08.pcx │ │ ├── img5_09.pcx │ │ ├── img5_10.pcx │ │ ├── img5_11.pcx │ │ ├── img5_12.pcx │ │ ├── img6_00.pcx │ │ ├── img6_01.pcx │ │ ├── img6_02.pcx │ │ ├── img6_03.pcx │ │ ├── img6_04.pcx │ │ ├── img6_05.pcx │ │ ├── img6_06.pcx │ │ ├── img6_07.pcx │ │ ├── img6_08.pcx │ │ ├── img6_09.pcx │ │ ├── img6_10.pcx │ │ ├── img6_11.pcx │ │ ├── img6_12.pcx │ │ ├── img7_00.pcx │ │ ├── img7_01.pcx │ │ ├── img7_02.pcx │ │ ├── img7_03.pcx │ │ ├── img7_04.pcx │ │ ├── img7_05.pcx │ │ ├── img7_06.pcx │ │ ├── img7_07.pcx │ │ ├── img7_08.pcx │ │ ├── img7_09.pcx │ │ ├── img7_10.pcx │ │ ├── img7_11.pcx │ │ ├── img7_12.pcx │ │ ├── info.pcx │ │ ├── store.pcx │ │ └── video.flc │ ├── konstrukt │ │ ├── build.pcx │ │ ├── build_shw.pcx │ │ ├── data.json │ │ ├── img0.pcx │ │ ├── img1.pcx │ │ ├── img2.pcx │ │ ├── img3.pcx │ │ ├── img4.pcx │ │ ├── img5.pcx │ │ ├── img6.pcx │ │ ├── img7.pcx │ │ ├── info.pcx │ │ ├── shw0.pcx │ │ ├── shw1.pcx │ │ ├── shw2.pcx │ │ ├── shw3.pcx │ │ ├── shw4.pcx │ │ ├── shw5.pcx │ │ ├── shw6.pcx │ │ ├── shw7.pcx │ │ ├── store.pcx │ │ └── video.flc │ ├── minelayer │ │ ├── data.json │ │ ├── img0.pcx │ │ ├── img1.pcx │ │ ├── img2.pcx │ │ ├── img3.pcx │ │ ├── img4.pcx │ │ ├── img5.pcx │ │ ├── img6.pcx │ │ ├── img7.pcx │ │ ├── info.pcx │ │ ├── shw0.pcx │ │ ├── shw1.pcx │ │ ├── shw2.pcx │ │ ├── shw3.pcx │ │ ├── shw4.pcx │ │ ├── shw5.pcx │ │ ├── shw6.pcx │ │ ├── shw7.pcx │ │ ├── store.pcx │ │ └── video.flc │ ├── missel │ │ ├── data.json │ │ ├── img0.pcx │ │ ├── img1.pcx │ │ ├── img2.pcx │ │ ├── img3.pcx │ │ ├── img4.pcx │ │ ├── img5.pcx │ │ ├── img6.pcx │ │ ├── img7.pcx │ │ ├── info.pcx │ │ ├── shw0.pcx │ │ ├── shw1.pcx │ │ ├── shw2.pcx │ │ ├── shw3.pcx │ │ ├── shw4.pcx │ │ ├── shw5.pcx │ │ ├── shw6.pcx │ │ ├── shw7.pcx │ │ ├── store.pcx │ │ └── video.flc │ ├── missel_ship │ │ ├── data.json │ │ ├── img0.pcx │ │ ├── img1.pcx │ │ ├── img2.pcx │ │ ├── img3.pcx │ │ ├── img4.pcx │ │ ├── img5.pcx │ │ ├── img6.pcx │ │ ├── img7.pcx │ │ ├── info.pcx │ │ ├── shw0.pcx │ │ ├── shw1.pcx │ │ ├── shw2.pcx │ │ ├── shw3.pcx │ │ ├── shw4.pcx │ │ ├── shw5.pcx │ │ ├── shw6.pcx │ │ ├── shw7.pcx │ │ ├── store.pcx │ │ └── video.flc │ ├── mobile_aa │ │ ├── data.json │ │ ├── img0.pcx │ │ ├── img1.pcx │ │ ├── img2.pcx │ │ ├── img3.pcx │ │ ├── img4.pcx │ │ ├── img5.pcx │ │ ├── img6.pcx │ │ ├── img7.pcx │ │ ├── info.pcx │ │ ├── shw0.pcx │ │ ├── shw1.pcx │ │ ├── shw2.pcx │ │ ├── shw3.pcx │ │ ├── shw4.pcx │ │ ├── shw5.pcx │ │ ├── shw6.pcx │ │ ├── shw7.pcx │ │ ├── store.pcx │ │ └── video.flc │ ├── pionier │ │ ├── build.pcx │ │ ├── build_shw.pcx │ │ ├── data.json │ │ ├── img0.pcx │ │ ├── img1.pcx │ │ ├── img2.pcx │ │ ├── img3.pcx │ │ ├── img4.pcx │ │ ├── img5.pcx │ │ ├── img6.pcx │ │ ├── img7.pcx │ │ ├── info.pcx │ │ ├── shw0.pcx │ │ ├── shw1.pcx │ │ ├── shw2.pcx │ │ ├── shw3.pcx │ │ ├── shw4.pcx │ │ ├── shw5.pcx │ │ ├── shw6.pcx │ │ ├── shw7.pcx │ │ ├── store.pcx │ │ └── video.flc │ ├── repair │ │ ├── data.json │ │ ├── img0.pcx │ │ ├── img1.pcx │ │ ├── img2.pcx │ │ ├── img3.pcx │ │ ├── img4.pcx │ │ ├── img5.pcx │ │ ├── img6.pcx │ │ ├── img7.pcx │ │ ├── info.pcx │ │ ├── shw0.pcx │ │ ├── shw1.pcx │ │ ├── shw2.pcx │ │ ├── shw3.pcx │ │ ├── shw4.pcx │ │ ├── shw5.pcx │ │ ├── shw6.pcx │ │ ├── shw7.pcx │ │ ├── store.pcx │ │ └── video.flc │ ├── scanner │ │ ├── data.json │ │ ├── img0.pcx │ │ ├── img1.pcx │ │ ├── img2.pcx │ │ ├── img3.pcx │ │ ├── img4.pcx │ │ ├── img5.pcx │ │ ├── img6.pcx │ │ ├── img7.pcx │ │ ├── info.pcx │ │ ├── overlay.pcx │ │ ├── shw0.pcx │ │ ├── shw1.pcx │ │ ├── shw2.pcx │ │ ├── shw3.pcx │ │ ├── shw4.pcx │ │ ├── shw5.pcx │ │ ├── shw6.pcx │ │ ├── shw7.pcx │ │ ├── store.pcx │ │ └── video.flc │ ├── scout │ │ ├── data.json │ │ ├── img0.pcx │ │ ├── img1.pcx │ │ ├── img2.pcx │ │ ├── img3.pcx │ │ ├── img4.pcx │ │ ├── img5.pcx │ │ ├── img6.pcx │ │ ├── img7.pcx │ │ ├── info.pcx │ │ ├── shw0.pcx │ │ ├── shw1.pcx │ │ ├── shw2.pcx │ │ ├── shw3.pcx │ │ ├── shw4.pcx │ │ ├── shw5.pcx │ │ ├── shw6.pcx │ │ ├── shw7.pcx │ │ ├── store.pcx │ │ └── video.flc │ ├── sea_minelayer │ │ ├── data.json │ │ ├── img0.pcx │ │ ├── img1.pcx │ │ ├── img2.pcx │ │ ├── img3.pcx │ │ ├── img4.pcx │ │ ├── img5.pcx │ │ ├── img6.pcx │ │ ├── img7.pcx │ │ ├── info.pcx │ │ ├── shw0.pcx │ │ ├── shw1.pcx │ │ ├── shw2.pcx │ │ ├── shw3.pcx │ │ ├── shw4.pcx │ │ ├── shw5.pcx │ │ ├── shw6.pcx │ │ ├── shw7.pcx │ │ ├── store.pcx │ │ └── video.flc │ ├── sea_transport │ │ ├── data.json │ │ ├── img0.pcx │ │ ├── img1.pcx │ │ ├── img2.pcx │ │ ├── img3.pcx │ │ ├── img4.pcx │ │ ├── img5.pcx │ │ ├── img6.pcx │ │ ├── img7.pcx │ │ ├── info.pcx │ │ ├── shw0.pcx │ │ ├── shw1.pcx │ │ ├── shw2.pcx │ │ ├── shw3.pcx │ │ ├── shw4.pcx │ │ ├── shw5.pcx │ │ ├── shw6.pcx │ │ ├── shw7.pcx │ │ ├── store.pcx │ │ └── video.flc │ ├── sub │ │ ├── attack.ogg │ │ ├── data.json │ │ ├── drive_water.ogg │ │ ├── img0.pcx │ │ ├── img1.pcx │ │ ├── img2.pcx │ │ ├── img3.pcx │ │ ├── img4.pcx │ │ ├── img5.pcx │ │ ├── img6.pcx │ │ ├── img7.pcx │ │ ├── info.pcx │ │ ├── shw0.pcx │ │ ├── shw1.pcx │ │ ├── shw2.pcx │ │ ├── shw3.pcx │ │ ├── shw4.pcx │ │ ├── shw5.pcx │ │ ├── shw6.pcx │ │ ├── shw7.pcx │ │ ├── start_water.ogg │ │ ├── stop_water.ogg │ │ ├── store.pcx │ │ ├── video.flc │ │ └── wait_water.ogg │ ├── surveyor │ │ ├── data.json │ │ ├── drive.ogg │ │ ├── drive_water.ogg │ │ ├── img0.pcx │ │ ├── img1.pcx │ │ ├── img2.pcx │ │ ├── img3.pcx │ │ ├── img4.pcx │ │ ├── img5.pcx │ │ ├── img6.pcx │ │ ├── img7.pcx │ │ ├── info.pcx │ │ ├── shw0.pcx │ │ ├── shw1.pcx │ │ ├── shw2.pcx │ │ ├── shw3.pcx │ │ ├── shw4.pcx │ │ ├── shw5.pcx │ │ ├── shw6.pcx │ │ ├── shw7.pcx │ │ ├── start.ogg │ │ ├── start_water.ogg │ │ ├── stop.ogg │ │ ├── stop_water.ogg │ │ ├── store.pcx │ │ ├── video.flc │ │ ├── wait.ogg │ │ └── wait_water.ogg │ ├── tank │ │ ├── data.json │ │ ├── img0.pcx │ │ ├── img1.pcx │ │ ├── img2.pcx │ │ ├── img3.pcx │ │ ├── img4.pcx │ │ ├── img5.pcx │ │ ├── img6.pcx │ │ ├── img7.pcx │ │ ├── info.pcx │ │ ├── shw0.pcx │ │ ├── shw1.pcx │ │ ├── shw2.pcx │ │ ├── shw3.pcx │ │ ├── shw4.pcx │ │ ├── shw5.pcx │ │ ├── shw6.pcx │ │ ├── shw7.pcx │ │ ├── store.pcx │ │ └── video.flc │ ├── trans_gold │ │ ├── data.json │ │ ├── img0.pcx │ │ ├── img1.pcx │ │ ├── img2.pcx │ │ ├── img3.pcx │ │ ├── img4.pcx │ │ ├── img5.pcx │ │ ├── img6.pcx │ │ ├── img7.pcx │ │ ├── info.pcx │ │ ├── shw0.pcx │ │ ├── shw1.pcx │ │ ├── shw2.pcx │ │ ├── shw3.pcx │ │ ├── shw4.pcx │ │ ├── shw5.pcx │ │ ├── shw6.pcx │ │ ├── shw7.pcx │ │ ├── store.pcx │ │ └── video.flc │ ├── trans_metal │ │ ├── data.json │ │ ├── img0.pcx │ │ ├── img1.pcx │ │ ├── img2.pcx │ │ ├── img3.pcx │ │ ├── img4.pcx │ │ ├── img5.pcx │ │ ├── img6.pcx │ │ ├── img7.pcx │ │ ├── info.pcx │ │ ├── shw0.pcx │ │ ├── shw1.pcx │ │ ├── shw2.pcx │ │ ├── shw3.pcx │ │ ├── shw4.pcx │ │ ├── shw5.pcx │ │ ├── shw6.pcx │ │ ├── shw7.pcx │ │ ├── store.pcx │ │ └── video.flc │ ├── trans_oil │ │ ├── data.json │ │ ├── img0.pcx │ │ ├── img1.pcx │ │ ├── img2.pcx │ │ ├── img3.pcx │ │ ├── img4.pcx │ │ ├── img5.pcx │ │ ├── img6.pcx │ │ ├── img7.pcx │ │ ├── info.pcx │ │ ├── shw0.pcx │ │ ├── shw1.pcx │ │ ├── shw2.pcx │ │ ├── shw3.pcx │ │ ├── shw4.pcx │ │ ├── shw5.pcx │ │ ├── shw6.pcx │ │ ├── shw7.pcx │ │ ├── store.pcx │ │ └── video.flc │ └── vehicles.json └── voices │ └── .empty ├── mk ├── cmake │ ├── FindOggVorbis.cmake │ ├── FindSDL2.cmake │ ├── FindSDL2_mixer.cmake │ ├── FindSDL2_net.cmake │ ├── GetGitRevisionDescription.cmake │ └── GetGitRevisionDescription.cmake.in ├── mac │ ├── Info.plist │ ├── Resources │ │ └── maxr.icns │ ├── frameworks │ │ ├── Ogg.framework.zip │ │ ├── SDL.framework.zip │ │ ├── SDL_mixer.framework.zip │ │ ├── SDL_net.framework.zip │ │ └── Vorbis.framework.zip │ ├── resinstaller.xcodeproj │ │ └── project.pbxproj │ └── sources │ │ ├── SDLMain.h │ │ ├── SDLMain.m │ │ ├── resinstallerGUI.h │ │ └── resinstallerGUI.m └── win32 │ └── installer │ ├── StrContains.nsh │ ├── left.bmp │ ├── license.txt │ ├── maxr-installer.nsi │ ├── maxr.json │ └── top_small.bmp ├── premake5.lua ├── resinstaller ├── .clang-format ├── ABOUT ├── AUTHORS ├── Readme.md └── src │ ├── converter.cpp │ ├── converter.h │ ├── defines.h │ ├── file.cpp │ ├── file.h │ ├── ogg_encode.cpp │ ├── ogg_encode.h │ ├── palette.h │ ├── pcx.cpp │ ├── pcx.h │ ├── resinstaller.cpp │ ├── resinstaller.h │ ├── wave.cpp │ └── wave.h ├── src ├── .clang-format ├── 3rd │ ├── .clang-format │ ├── Readme.txt │ ├── SDL_flic │ │ ├── SDL_flic.c │ │ └── SDL_flic.h │ └── mveplayer │ │ ├── mveplayer.cpp │ │ └── mveplayer.h ├── autoversion.h.in ├── dedicatedserver │ ├── dedicatedserver.cpp │ ├── dedicatedserver.h │ ├── dedicatedservergame.cpp │ ├── dedicatedservergame.h │ └── dedicatedservermain.cpp ├── lib │ ├── SDLutility │ │ ├── drawing.cpp │ │ ├── drawing.h │ │ ├── partialsurface.h │ │ ├── sdlcomponent.cpp │ │ ├── sdlcomponent.h │ │ ├── sdlnetcomponent.cpp │ │ ├── sdlnetcomponent.h │ │ ├── sdlversion.cpp │ │ ├── sdlversion.h │ │ ├── tosdl.cpp │ │ ├── tosdl.h │ │ └── uniquesurface.h │ ├── chatcommand │ │ ├── chatcommand.cpp │ │ ├── chatcommand.h │ │ ├── chatcommandarguments.cpp │ │ ├── chatcommandarguments.h │ │ ├── chatcommandexecutor.h │ │ ├── chatcommandparser.cpp │ │ └── chatcommandparser.h │ ├── crashreporter │ │ ├── debug.cpp │ │ └── debug.h │ ├── defines.h │ ├── events │ │ ├── eventmanager.cpp │ │ ├── eventmanager.h │ │ ├── keyboardevents.cpp │ │ ├── keyboardevents.h │ │ ├── mouseevents.cpp │ │ └── mouseevents.h │ ├── game │ │ ├── connectionmanager.cpp │ │ ├── connectionmanager.h │ │ ├── data │ │ │ ├── base │ │ │ │ ├── base.cpp │ │ │ │ └── base.h │ │ │ ├── freezemode.cpp │ │ │ ├── freezemode.h │ │ │ ├── gamesettings.cpp │ │ │ ├── gamesettings.h │ │ │ ├── gui │ │ │ │ ├── gameguistate.cpp │ │ │ │ ├── gameguistate.h │ │ │ │ ├── playerguiinfo.h │ │ │ │ ├── unitlocklist.cpp │ │ │ │ ├── unitlocklist.h │ │ │ │ ├── unitselection.cpp │ │ │ │ └── unitselection.h │ │ │ ├── map │ │ │ │ ├── map.cpp │ │ │ │ ├── map.h │ │ │ │ ├── mapfieldview.cpp │ │ │ │ ├── mapfieldview.h │ │ │ │ ├── mapview.cpp │ │ │ │ └── mapview.h │ │ │ ├── miningresource.cpp │ │ │ ├── miningresource.h │ │ │ ├── model.cpp │ │ │ ├── model.h │ │ │ ├── player │ │ │ │ ├── clans.cpp │ │ │ │ ├── clans.h │ │ │ │ ├── player.cpp │ │ │ │ ├── player.h │ │ │ │ ├── playerbasicdata.cpp │ │ │ │ ├── playerbasicdata.h │ │ │ │ └── playersettings.h │ │ │ ├── rangemap.cpp │ │ │ ├── rangemap.h │ │ │ ├── report │ │ │ │ ├── savedreport.cpp │ │ │ │ ├── savedreport.h │ │ │ │ ├── savedreportchat.cpp │ │ │ │ ├── savedreportchat.h │ │ │ │ ├── savedreportsimple.cpp │ │ │ │ ├── savedreportsimple.h │ │ │ │ ├── savedreportunit.cpp │ │ │ │ ├── savedreportunit.h │ │ │ │ ├── special │ │ │ │ │ ├── savedreporthostcommand.cpp │ │ │ │ │ ├── savedreporthostcommand.h │ │ │ │ │ ├── savedreportlostconnection.cpp │ │ │ │ │ ├── savedreportlostconnection.h │ │ │ │ │ ├── savedreportplayerdefeated.cpp │ │ │ │ │ ├── savedreportplayerdefeated.h │ │ │ │ │ ├── savedreportplayerendedturn.cpp │ │ │ │ │ ├── savedreportplayerendedturn.h │ │ │ │ │ ├── savedreportplayerleft.cpp │ │ │ │ │ ├── savedreportplayerleft.h │ │ │ │ │ ├── savedreportplayerwins.cpp │ │ │ │ │ ├── savedreportplayerwins.h │ │ │ │ │ ├── savedreportresourcechanged.cpp │ │ │ │ │ ├── savedreportresourcechanged.h │ │ │ │ │ ├── savedreportturnstart.cpp │ │ │ │ │ ├── savedreportturnstart.h │ │ │ │ │ ├── savedreportupgraded.cpp │ │ │ │ │ └── savedreportupgraded.h │ │ │ │ └── unit │ │ │ │ │ ├── savedreportattacked.cpp │ │ │ │ │ ├── savedreportattacked.h │ │ │ │ │ ├── savedreportattackingenemy.cpp │ │ │ │ │ ├── savedreportattackingenemy.h │ │ │ │ │ ├── savedreportcapturedbyenemy.cpp │ │ │ │ │ ├── savedreportcapturedbyenemy.h │ │ │ │ │ ├── savedreportdestroyed.cpp │ │ │ │ │ ├── savedreportdestroyed.h │ │ │ │ │ ├── savedreportdetected.cpp │ │ │ │ │ ├── savedreportdetected.h │ │ │ │ │ ├── savedreportdisabled.cpp │ │ │ │ │ ├── savedreportdisabled.h │ │ │ │ │ ├── savedreportpathinterrupted.cpp │ │ │ │ │ ├── savedreportpathinterrupted.h │ │ │ │ │ ├── savedreportsurveyoraiconfused.cpp │ │ │ │ │ └── savedreportsurveyoraiconfused.h │ │ │ ├── resourcetype.h │ │ │ ├── savegame.cpp │ │ │ ├── savegame.h │ │ │ ├── savegameinfo.cpp │ │ │ ├── savegameinfo.h │ │ │ └── units │ │ │ │ ├── building.cpp │ │ │ │ ├── building.h │ │ │ │ ├── commandodata.cpp │ │ │ │ ├── commandodata.h │ │ │ │ ├── id.cpp │ │ │ │ ├── id.h │ │ │ │ ├── landingunit.h │ │ │ │ ├── unit.cpp │ │ │ │ ├── unit.h │ │ │ │ ├── unitdata.cpp │ │ │ │ ├── unitdata.h │ │ │ │ ├── vehicle.cpp │ │ │ │ └── vehicle.h │ │ ├── logic │ │ │ ├── action │ │ │ │ ├── action.cpp │ │ │ │ ├── action.h │ │ │ │ ├── actionactivate.cpp │ │ │ │ ├── actionactivate.h │ │ │ │ ├── actionattack.cpp │ │ │ │ ├── actionattack.h │ │ │ │ ├── actionbuyupgrades.cpp │ │ │ │ ├── actionbuyupgrades.h │ │ │ │ ├── actionchangebuildlist.cpp │ │ │ │ ├── actionchangebuildlist.h │ │ │ │ ├── actionchangemanualfire.cpp │ │ │ │ ├── actionchangemanualfire.h │ │ │ │ ├── actionchangeresearch.cpp │ │ │ │ ├── actionchangeresearch.h │ │ │ │ ├── actionchangesentry.cpp │ │ │ │ ├── actionchangesentry.h │ │ │ │ ├── actionchangeunitname.cpp │ │ │ │ ├── actionchangeunitname.h │ │ │ │ ├── actionclear.cpp │ │ │ │ ├── actionclear.h │ │ │ │ ├── actionendturn.cpp │ │ │ │ ├── actionendturn.h │ │ │ │ ├── actionfinishbuild.cpp │ │ │ │ ├── actionfinishbuild.h │ │ │ │ ├── actioninitnewgame.cpp │ │ │ │ ├── actioninitnewgame.h │ │ │ │ ├── actionload.cpp │ │ │ │ ├── actionload.h │ │ │ │ ├── actionminelayerstatus.cpp │ │ │ │ ├── actionminelayerstatus.h │ │ │ │ ├── actionrepairreload.cpp │ │ │ │ ├── actionrepairreload.h │ │ │ │ ├── actionresourcedistribution.cpp │ │ │ │ ├── actionresourcedistribution.h │ │ │ │ ├── actionresumemove.cpp │ │ │ │ ├── actionresumemove.h │ │ │ │ ├── actionselfdestroy.cpp │ │ │ │ ├── actionselfdestroy.h │ │ │ │ ├── actionsetautomove.cpp │ │ │ │ ├── actionsetautomove.h │ │ │ │ ├── actionstartbuild.cpp │ │ │ │ ├── actionstartbuild.h │ │ │ │ ├── actionstartmove.cpp │ │ │ │ ├── actionstartmove.h │ │ │ │ ├── actionstartturn.cpp │ │ │ │ ├── actionstartturn.h │ │ │ │ ├── actionstartwork.cpp │ │ │ │ ├── actionstartwork.h │ │ │ │ ├── actionstealdisable.cpp │ │ │ │ ├── actionstealdisable.h │ │ │ │ ├── actionstop.cpp │ │ │ │ ├── actionstop.h │ │ │ │ ├── actiontransfer.cpp │ │ │ │ ├── actiontransfer.h │ │ │ │ ├── actionupgradebuilding.cpp │ │ │ │ ├── actionupgradebuilding.h │ │ │ │ ├── actionupgradevehicle.cpp │ │ │ │ └── actionupgradevehicle.h │ │ │ ├── attackjob.cpp │ │ │ ├── attackjob.h │ │ │ ├── casualtiestracker.cpp │ │ │ ├── casualtiestracker.h │ │ │ ├── client.cpp │ │ │ ├── client.h │ │ │ ├── endmoveaction.cpp │ │ │ ├── endmoveaction.h │ │ │ ├── fxeffects.cpp │ │ │ ├── fxeffects.h │ │ │ ├── gametimer.cpp │ │ │ ├── gametimer.h │ │ │ ├── jobs │ │ │ │ ├── airtransportloadjob.cpp │ │ │ │ ├── airtransportloadjob.h │ │ │ │ ├── destroyjob.cpp │ │ │ │ ├── destroyjob.h │ │ │ │ ├── getinjob.cpp │ │ │ │ ├── getinjob.h │ │ │ │ ├── job.cpp │ │ │ │ ├── job.h │ │ │ │ ├── jobcontainer.cpp │ │ │ │ ├── jobcontainer.h │ │ │ │ ├── planetakeoffjob.cpp │ │ │ │ ├── planetakeoffjob.h │ │ │ │ ├── startbuildjob.cpp │ │ │ │ └── startbuildjob.h │ │ │ ├── landingpositionmanager.cpp │ │ │ ├── landingpositionmanager.h │ │ │ ├── landingpositionstate.h │ │ │ ├── movejob.cpp │ │ │ ├── movejob.h │ │ │ ├── pathcalculator.cpp │ │ │ ├── pathcalculator.h │ │ │ ├── server.cpp │ │ │ ├── server.h │ │ │ ├── subbaseresourcedistribution.cpp │ │ │ ├── subbaseresourcedistribution.h │ │ │ ├── surveyorai.cpp │ │ │ ├── surveyorai.h │ │ │ ├── turncounter.cpp │ │ │ ├── turncounter.h │ │ │ ├── turntimeclock.cpp │ │ │ ├── turntimeclock.h │ │ │ ├── upgradecalculator.cpp │ │ │ └── upgradecalculator.h │ │ ├── network.cpp │ │ ├── network.h │ │ ├── networkaddress.h │ │ ├── protocol │ │ │ ├── lobbymessage.cpp │ │ │ ├── lobbymessage.h │ │ │ ├── netmessage.cpp │ │ │ └── netmessage.h │ │ └── startup │ │ │ ├── gamepreparation.cpp │ │ │ ├── gamepreparation.h │ │ │ ├── initplayerdata.h │ │ │ ├── lobbyclient.cpp │ │ │ ├── lobbyclient.h │ │ │ ├── lobbypreparationdata.h │ │ │ ├── lobbyserver.cpp │ │ │ ├── lobbyserver.h │ │ │ ├── lobbyutils.cpp │ │ │ └── lobbyutils.h │ ├── input │ │ ├── keyboard │ │ │ ├── keyboard.cpp │ │ │ ├── keyboard.h │ │ │ ├── keycombination.cpp │ │ │ ├── keycombination.h │ │ │ ├── keymodifiertype.h │ │ │ ├── keysequence.cpp │ │ │ └── keysequence.h │ │ └── mouse │ │ │ ├── cursor │ │ │ ├── mousecursor.h │ │ │ ├── mousecursoramount.cpp │ │ │ ├── mousecursoramount.h │ │ │ ├── mousecursorattack.cpp │ │ │ ├── mousecursorattack.h │ │ │ ├── mousecursorsimple.cpp │ │ │ └── mousecursorsimple.h │ │ │ ├── mouse.cpp │ │ │ ├── mouse.h │ │ │ ├── mousebuttontype.h │ │ │ └── mousecursortype.h │ ├── mapdownloader │ │ ├── mapdownload.cpp │ │ ├── mapdownload.h │ │ ├── mapdownloadmessagehandler.cpp │ │ ├── mapdownloadmessagehandler.h │ │ ├── mapuploadmessagehandler.cpp │ │ └── mapuploadmessagehandler.h │ ├── maxrversion.cpp │ ├── maxrversion.h │ ├── output │ │ ├── sound │ │ │ ├── soundchannel.cpp │ │ │ ├── soundchannel.h │ │ │ ├── soundchannelgroup.cpp │ │ │ ├── soundchannelgroup.h │ │ │ ├── soundchunk.cpp │ │ │ ├── soundchunk.h │ │ │ ├── sounddevice.cpp │ │ │ └── sounddevice.h │ │ └── video │ │ │ ├── unifonts.cpp │ │ │ ├── unifonts.h │ │ │ ├── video.cpp │ │ │ └── video.h │ ├── resources │ │ ├── buildinguidata.cpp │ │ ├── buildinguidata.h │ │ ├── keys.cpp │ │ ├── keys.h │ │ ├── loaddata.cpp │ │ ├── loaddata.h │ │ ├── map │ │ │ ├── graphicstaticmap.cpp │ │ │ ├── graphicstaticmap.h │ │ │ ├── mappreview.cpp │ │ │ └── mappreview.h │ │ ├── pcx.cpp │ │ ├── pcx.h │ │ ├── playercolor.cpp │ │ ├── playercolor.h │ │ ├── sliderhandletype.h │ │ ├── sound.cpp │ │ ├── sound.h │ │ ├── uidata.cpp │ │ ├── uidata.h │ │ ├── unitdatasymboltype.h │ │ ├── vehicleuidata.cpp │ │ └── vehicleuidata.h │ ├── settings.cpp │ ├── settings.h │ └── utility │ │ ├── arraycrc.h │ │ ├── box.h │ │ ├── color.cpp │ │ ├── color.h │ │ ├── comparison.h │ │ ├── crc.cpp │ │ ├── crc.h │ │ ├── crossplattformrandom.cpp │ │ ├── crossplattformrandom.h │ │ ├── deref.h │ │ ├── direction.cpp │ │ ├── direction.h │ │ ├── enumflag.h │ │ ├── fixedvector.h │ │ ├── flatset.h │ │ ├── functiontraits.h │ │ ├── indexiterator.h │ │ ├── language.cpp │ │ ├── language.h │ │ ├── listhelpers.h │ │ ├── log.cpp │ │ ├── log.h │ │ ├── mathtools.cpp │ │ ├── mathtools.h │ │ ├── narrow_cast.h │ │ ├── os.cpp │ │ ├── os.h │ │ ├── position.cpp │ │ ├── position.h │ │ ├── random.h │ │ ├── ranges.h │ │ ├── scopedoperation.h │ │ ├── serialization │ │ ├── binaryarchive.cpp │ │ ├── binaryarchive.h │ │ ├── jsonarchive.cpp │ │ ├── jsonarchive.h │ │ ├── nvp.h │ │ └── serialization.h │ │ ├── signal │ │ ├── signal.h │ │ ├── signalconnection.cpp │ │ ├── signalconnection.h │ │ ├── signalconnectionmanager.cpp │ │ ├── signalconnectionmanager.h │ │ └── slot.h │ │ ├── string │ │ ├── iequals.h │ │ ├── roman.cpp │ │ ├── roman.h │ │ ├── toNumber.h │ │ ├── toString.cpp │ │ ├── toString.h │ │ ├── tolower.h │ │ ├── toupper.h │ │ ├── trim.h │ │ ├── utf-8.cpp │ │ └── utf-8.h │ │ ├── t_2.h │ │ ├── thread │ │ ├── concurrentqueue.h │ │ ├── dummymutex.h │ │ ├── ismainthread.cpp │ │ └── ismainthread.h │ │ ├── tounderlyingtype.h │ │ ├── version.cpp │ │ └── version.h ├── maxr.rc └── ui │ ├── graphical │ ├── game │ │ ├── animations │ │ │ ├── animation.h │ │ │ ├── animationdither.cpp │ │ │ ├── animationdither.h │ │ │ ├── animationstartup.cpp │ │ │ ├── animationstartup.h │ │ │ ├── animationstartupbuildingsite.cpp │ │ │ ├── animationstartupbuildingsite.h │ │ │ ├── animationtimer.cpp │ │ │ ├── animationtimer.h │ │ │ ├── animationwork.cpp │ │ │ └── animationwork.h │ │ ├── control │ │ │ ├── gameguicontroller.cpp │ │ │ ├── gameguicontroller.h │ │ │ ├── mouseaction │ │ │ │ ├── mouseaction.h │ │ │ │ ├── mouseactionactivatefinished.cpp │ │ │ │ ├── mouseactionactivatefinished.h │ │ │ │ ├── mouseactionactivateloaded.cpp │ │ │ │ ├── mouseactionactivateloaded.h │ │ │ │ ├── mouseactionattack.cpp │ │ │ │ ├── mouseactionattack.h │ │ │ │ ├── mouseactiondisable.cpp │ │ │ │ ├── mouseactiondisable.h │ │ │ │ ├── mouseactionenter.cpp │ │ │ │ ├── mouseactionenter.h │ │ │ │ ├── mouseactionhelp.cpp │ │ │ │ ├── mouseactionhelp.h │ │ │ │ ├── mouseactionload.cpp │ │ │ │ ├── mouseactionload.h │ │ │ │ ├── mouseactionmove.cpp │ │ │ │ ├── mouseactionmove.h │ │ │ │ ├── mouseactionrepair.cpp │ │ │ │ ├── mouseactionrepair.h │ │ │ │ ├── mouseactionselect.cpp │ │ │ │ ├── mouseactionselect.h │ │ │ │ ├── mouseactionselectbuildpathdestination.cpp │ │ │ │ ├── mouseactionselectbuildpathdestination.h │ │ │ │ ├── mouseactionselectbuildposition.cpp │ │ │ │ ├── mouseactionselectbuildposition.h │ │ │ │ ├── mouseactionsteal.cpp │ │ │ │ ├── mouseactionsteal.h │ │ │ │ ├── mouseactionsupplyammo.cpp │ │ │ │ ├── mouseactionsupplyammo.h │ │ │ │ ├── mouseactiontransfer.cpp │ │ │ │ └── mouseactiontransfer.h │ │ │ ├── mousemode │ │ │ │ ├── mousemode.cpp │ │ │ │ ├── mousemode.h │ │ │ │ ├── mousemodeactivateloaded.cpp │ │ │ │ ├── mousemodeactivateloaded.h │ │ │ │ ├── mousemodeattack.cpp │ │ │ │ ├── mousemodeattack.h │ │ │ │ ├── mousemodedefault.cpp │ │ │ │ ├── mousemodedefault.h │ │ │ │ ├── mousemodedisable.cpp │ │ │ │ ├── mousemodedisable.h │ │ │ │ ├── mousemodeenter.cpp │ │ │ │ ├── mousemodeenter.h │ │ │ │ ├── mousemodehelp.cpp │ │ │ │ ├── mousemodehelp.h │ │ │ │ ├── mousemodeload.cpp │ │ │ │ ├── mousemodeload.h │ │ │ │ ├── mousemoderepair.cpp │ │ │ │ ├── mousemoderepair.h │ │ │ │ ├── mousemodeselectbuildpathdestination.cpp │ │ │ │ ├── mousemodeselectbuildpathdestination.h │ │ │ │ ├── mousemodeselectbuildposition.cpp │ │ │ │ ├── mousemodeselectbuildposition.h │ │ │ │ ├── mousemodesteal.cpp │ │ │ │ ├── mousemodesteal.h │ │ │ │ ├── mousemodesupplyammo.cpp │ │ │ │ ├── mousemodesupplyammo.h │ │ │ │ ├── mousemodetransfer.cpp │ │ │ │ ├── mousemodetransfer.h │ │ │ │ └── mousemodetype.h │ │ │ ├── rightmousebuttonscroller.cpp │ │ │ └── rightmousebuttonscroller.h │ │ ├── drawfxeffect.cpp │ │ ├── drawfxeffect.h │ │ ├── gamegui.cpp │ │ ├── gamegui.h │ │ ├── hud.cpp │ │ ├── hud.h │ │ ├── temp │ │ │ ├── drawingcache.cpp │ │ │ ├── drawingcache.h │ │ │ ├── unitdrawingengine.cpp │ │ │ └── unitdrawingengine.h │ │ ├── unitselectionbox.cpp │ │ ├── unitselectionbox.h │ │ └── widgets │ │ │ ├── chatbox.h │ │ │ ├── chatboxplayerlistviewitem.cpp │ │ │ ├── chatboxplayerlistviewitem.h │ │ │ ├── debugoutputwidget.cpp │ │ │ ├── debugoutputwidget.h │ │ │ ├── gamemapwidget.cpp │ │ │ ├── gamemapwidget.h │ │ │ ├── gamemessagelistview.cpp │ │ │ ├── gamemessagelistview.h │ │ │ ├── gamemessagelistviewitem.cpp │ │ │ ├── gamemessagelistviewitem.h │ │ │ ├── hudpanels.cpp │ │ │ ├── hudpanels.h │ │ │ ├── minimapwidget.cpp │ │ │ ├── minimapwidget.h │ │ │ ├── turntimeclockwidget.cpp │ │ │ ├── turntimeclockwidget.h │ │ │ ├── unitcontextmenuwidget.cpp │ │ │ ├── unitcontextmenuwidget.h │ │ │ ├── unitdetailshud.cpp │ │ │ ├── unitdetailshud.h │ │ │ ├── unitdetailsstored.cpp │ │ │ ├── unitdetailsstored.h │ │ │ ├── unitrenamewidget.cpp │ │ │ ├── unitrenamewidget.h │ │ │ ├── unitvideowidget.cpp │ │ │ └── unitvideowidget.h │ ├── intro.cpp │ ├── intro.h │ └── menu │ │ ├── control │ │ ├── game.h │ │ ├── initgamepreparation.cpp │ │ ├── initgamepreparation.h │ │ ├── local │ │ │ ├── hotseat │ │ │ │ ├── localhotseatgame.cpp │ │ │ │ ├── localhotseatgame.h │ │ │ │ ├── localhotseatgamenew.cpp │ │ │ │ ├── localhotseatgamenew.h │ │ │ │ ├── localhotseatgamesaved.cpp │ │ │ │ └── localhotseatgamesaved.h │ │ │ └── singleplayer │ │ │ │ ├── localsingleplayergame.cpp │ │ │ │ ├── localsingleplayergame.h │ │ │ │ ├── localsingleplayergamenew.cpp │ │ │ │ ├── localsingleplayergamenew.h │ │ │ │ ├── localsingleplayergamesaved.cpp │ │ │ │ └── localsingleplayergamesaved.h │ │ ├── menucontrollermultiplayerclient.cpp │ │ ├── menucontrollermultiplayerclient.h │ │ ├── menucontrollermultiplayerhost.cpp │ │ ├── menucontrollermultiplayerhost.h │ │ ├── menucontrollermultiplayerhotseat.cpp │ │ ├── menucontrollermultiplayerhotseat.h │ │ └── network │ │ │ ├── networkgame.cpp │ │ │ └── networkgame.h │ │ ├── dialogs │ │ ├── dialogcolorpicker.cpp │ │ ├── dialogcolorpicker.h │ │ ├── dialoglicense.cpp │ │ ├── dialoglicense.h │ │ ├── dialogok.cpp │ │ ├── dialogok.h │ │ ├── dialogpreferences.cpp │ │ ├── dialogpreferences.h │ │ ├── dialogresearch.cpp │ │ ├── dialogresearch.h │ │ ├── dialogselfdestruction.cpp │ │ ├── dialogselfdestruction.h │ │ ├── dialogtransfer.cpp │ │ ├── dialogtransfer.h │ │ ├── dialogyesno.cpp │ │ └── dialogyesno.h │ │ ├── widgets │ │ ├── abstractlistviewitem.cpp │ │ ├── abstractlistviewitem.h │ │ ├── checkbox.cpp │ │ ├── checkbox.h │ │ ├── colorpicker.cpp │ │ ├── colorpicker.h │ │ ├── colorselector.cpp │ │ ├── colorselector.h │ │ ├── combobox.cpp │ │ ├── combobox.h │ │ ├── listview.h │ │ ├── plot.h │ │ ├── pushbutton.cpp │ │ ├── pushbutton.h │ │ ├── radiogroup.cpp │ │ ├── radiogroup.h │ │ ├── scrollbar.cpp │ │ ├── scrollbar.h │ │ ├── slider.cpp │ │ ├── slider.h │ │ ├── sliderhandle.cpp │ │ ├── sliderhandle.h │ │ └── special │ │ │ ├── buildspeedhandlerwidget.cpp │ │ │ ├── buildspeedhandlerwidget.h │ │ │ ├── chatboxlandingplayerlistviewitem.cpp │ │ │ ├── chatboxlandingplayerlistviewitem.h │ │ │ ├── editablecheckbox.cpp │ │ │ ├── editablecheckbox.h │ │ │ ├── landingpositionselectionmap.cpp │ │ │ ├── landingpositionselectionmap.h │ │ │ ├── lobbychatboxlistviewitem.cpp │ │ │ ├── lobbychatboxlistviewitem.h │ │ │ ├── lobbyplayerlistviewitem.cpp │ │ │ ├── lobbyplayerlistviewitem.h │ │ │ ├── protectionglass.cpp │ │ │ ├── protectionglass.h │ │ │ ├── radiogroupvalue.h │ │ │ ├── reportdisadvantageslistviewitem.cpp │ │ │ ├── reportdisadvantageslistviewitem.h │ │ │ ├── reportmessagelistviewitem.cpp │ │ │ ├── reportmessagelistviewitem.h │ │ │ ├── reportunitlistviewitem.cpp │ │ │ ├── reportunitlistviewitem.h │ │ │ ├── resourcebar.cpp │ │ │ ├── resourcebar.h │ │ │ ├── saveslotwidget.cpp │ │ │ ├── saveslotwidget.h │ │ │ ├── textlistviewitem.cpp │ │ │ ├── textlistviewitem.h │ │ │ ├── unitdetails.cpp │ │ │ ├── unitdetails.h │ │ │ ├── unitlistviewitem.cpp │ │ │ ├── unitlistviewitem.h │ │ │ ├── unitlistviewitembuild.cpp │ │ │ ├── unitlistviewitembuild.h │ │ │ ├── unitlistviewitembuy.cpp │ │ │ ├── unitlistviewitembuy.h │ │ │ ├── unitlistviewitemcargo.cpp │ │ │ └── unitlistviewitemcargo.h │ │ └── windows │ │ ├── windowadvancedhangar │ │ └── windowadvancedhangar.h │ │ ├── windowbuildbuildings │ │ ├── windowbuildbuildings.cpp │ │ └── windowbuildbuildings.h │ │ ├── windowbuildvehicles │ │ ├── windowbuildvehicles.cpp │ │ └── windowbuildvehicles.h │ │ ├── windowclanselection │ │ ├── windowclanselection.cpp │ │ └── windowclanselection.h │ │ ├── windowendgame.cpp │ │ ├── windowendgame.h │ │ ├── windowgamesettings │ │ ├── windowgamesettings.cpp │ │ └── windowgamesettings.h │ │ ├── windowhangar │ │ ├── windowhangar.cpp │ │ └── windowhangar.h │ │ ├── windowlandingpositionselection │ │ ├── windowlandingpositionselection.cpp │ │ └── windowlandingpositionselection.h │ │ ├── windowlandingunitselection │ │ ├── windowlandingunitselection.cpp │ │ └── windowlandingunitselection.h │ │ ├── windowload │ │ ├── windowload.cpp │ │ └── windowload.h │ │ ├── windowloadsave │ │ ├── windowloadsave.cpp │ │ └── windowloadsave.h │ │ ├── windowmain.cpp │ │ ├── windowmain.h │ │ ├── windowmapselection │ │ ├── windowmapselection.cpp │ │ └── windowmapselection.h │ │ ├── windowmultiplayer.cpp │ │ ├── windowmultiplayer.h │ │ ├── windownetworklobby │ │ ├── windownetworklobby.cpp │ │ └── windownetworklobby.h │ │ ├── windownetworklobbyclient │ │ ├── windownetworklobbyclient.cpp │ │ └── windownetworklobbyclient.h │ │ ├── windownetworklobbyhost │ │ ├── windownetworklobbyhost.cpp │ │ └── windownetworklobbyhost.h │ │ ├── windowplayerselection │ │ ├── windowplayerselection.cpp │ │ └── windowplayerselection.h │ │ ├── windowreports │ │ ├── windowreports.cpp │ │ └── windowreports.h │ │ ├── windowresourcedistribution │ │ ├── windowresourcedistribution.cpp │ │ └── windowresourcedistribution.h │ │ ├── windowsingleplayer.cpp │ │ ├── windowsingleplayer.h │ │ ├── windowstart.cpp │ │ ├── windowstart.h │ │ ├── windowstorage │ │ ├── windowstorage.cpp │ │ └── windowstorage.h │ │ ├── windowunitinfo │ │ ├── windowunitinfo.cpp │ │ └── windowunitinfo.h │ │ └── windowupgrades │ │ ├── windowupgrades.cpp │ │ └── windowupgrades.h │ ├── sound │ ├── effects │ │ ├── soundchanneltype.h │ │ ├── soundconflicthandlingtype.h │ │ ├── soundeffect.cpp │ │ ├── soundeffect.h │ │ ├── soundeffectposition.cpp │ │ ├── soundeffectposition.h │ │ ├── soundeffecttype.h │ │ ├── soundeffectunit.cpp │ │ ├── soundeffectunit.h │ │ ├── soundeffectvoice.cpp │ │ └── soundeffectvoice.h │ ├── game │ │ ├── fxsound.cpp │ │ ├── fxsound.h │ │ ├── savedreportssound.cpp │ │ ├── savedreportssound.h │ │ ├── unitreport.cpp │ │ └── unitreport.h │ ├── soundmanager.cpp │ └── soundmanager.h │ ├── translations.cpp │ ├── translations.h │ ├── uidefines.h │ ├── uimain.cpp │ └── widgets │ ├── alignment.h │ ├── application.cpp │ ├── application.h │ ├── clickablewidget.cpp │ ├── clickablewidget.h │ ├── frame.cpp │ ├── frame.h │ ├── framecounter.cpp │ ├── framecounter.h │ ├── image.cpp │ ├── image.h │ ├── label.cpp │ ├── label.h │ ├── lineedit.cpp │ ├── lineedit.h │ ├── orientation.h │ ├── runnable.h │ ├── shortcut.cpp │ ├── shortcut.h │ ├── validators │ ├── validator.h │ ├── validatorint.cpp │ ├── validatorint.h │ └── validatorstate.h │ ├── widget.cpp │ ├── widget.h │ ├── window.cpp │ └── window.h ├── submodules └── .clang-format └── tests ├── .clang-format ├── main.cpp ├── tests ├── chatcommand │ └── chatcommandtests.cpp ├── game │ └── resourcesdistributor.cpp ├── input │ └── keyboardtests.cpp ├── output │ └── unifontstests.cpp └── utility │ ├── direction.cpp │ ├── serialization │ └── serialization.cpp │ └── string │ └── toNumber.cpp └── unittesttag.h /.gitignore: -------------------------------------------------------------------------------- 1 | /build/ 2 | /config.* 3 | /data_resinstaller/ 4 | /data/SDL2.dll 5 | /data/SDL2_mixer.dll 6 | /data/SDL2_net.dll 7 | -------------------------------------------------------------------------------- /data/ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/ABOUT -------------------------------------------------------------------------------- /data/COPYING.README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/COPYING.README -------------------------------------------------------------------------------- /data/buildings/barracks/img.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/barracks/img.pcx -------------------------------------------------------------------------------- /data/buildings/barracks/info.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/barracks/info.pcx -------------------------------------------------------------------------------- /data/buildings/barracks/shw.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/barracks/shw.pcx -------------------------------------------------------------------------------- /data/buildings/barracks/video.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/barracks/video.pcx -------------------------------------------------------------------------------- /data/buildings/block/img.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/block/img.pcx -------------------------------------------------------------------------------- /data/buildings/block/info.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/block/info.pcx -------------------------------------------------------------------------------- /data/buildings/block/shw.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/block/shw.pcx -------------------------------------------------------------------------------- /data/buildings/block/video.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/block/video.pcx -------------------------------------------------------------------------------- /data/buildings/bridge/img.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/bridge/img.pcx -------------------------------------------------------------------------------- /data/buildings/bridge/info.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/bridge/info.pcx -------------------------------------------------------------------------------- /data/buildings/bridge/shw.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/bridge/shw.pcx -------------------------------------------------------------------------------- /data/buildings/bridge/video.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/bridge/video.pcx -------------------------------------------------------------------------------- /data/buildings/connector/img.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/connector/img.pcx -------------------------------------------------------------------------------- /data/buildings/connector/info.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/connector/info.pcx -------------------------------------------------------------------------------- /data/buildings/connector/shw.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/connector/shw.pcx -------------------------------------------------------------------------------- /data/buildings/connector/video.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/connector/video.pcx -------------------------------------------------------------------------------- /data/buildings/depot/img.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/depot/img.pcx -------------------------------------------------------------------------------- /data/buildings/depot/info.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/depot/info.pcx -------------------------------------------------------------------------------- /data/buildings/depot/shw.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/depot/shw.pcx -------------------------------------------------------------------------------- /data/buildings/depot/video.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/depot/video.pcx -------------------------------------------------------------------------------- /data/buildings/dirt_big.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/dirt_big.pcx -------------------------------------------------------------------------------- /data/buildings/dirt_big_shw.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/dirt_big_shw.pcx -------------------------------------------------------------------------------- /data/buildings/dirt_small.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/dirt_small.pcx -------------------------------------------------------------------------------- /data/buildings/dirt_small_shw.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/dirt_small_shw.pcx -------------------------------------------------------------------------------- /data/buildings/dock/img.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/dock/img.pcx -------------------------------------------------------------------------------- /data/buildings/dock/info.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/dock/info.pcx -------------------------------------------------------------------------------- /data/buildings/dock/shw.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/dock/shw.pcx -------------------------------------------------------------------------------- /data/buildings/dock/video.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/dock/video.pcx -------------------------------------------------------------------------------- /data/buildings/ecosphere/img.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/ecosphere/img.pcx -------------------------------------------------------------------------------- /data/buildings/ecosphere/info.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/ecosphere/info.pcx -------------------------------------------------------------------------------- /data/buildings/ecosphere/shw.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/ecosphere/shw.pcx -------------------------------------------------------------------------------- /data/buildings/ecosphere/video.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/ecosphere/video.pcx -------------------------------------------------------------------------------- /data/buildings/energy_big/img.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/energy_big/img.pcx -------------------------------------------------------------------------------- /data/buildings/energy_big/info.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/energy_big/info.pcx -------------------------------------------------------------------------------- /data/buildings/energy_big/shw.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/energy_big/shw.pcx -------------------------------------------------------------------------------- /data/buildings/fac_air/effect.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/fac_air/effect.pcx -------------------------------------------------------------------------------- /data/buildings/fac_air/img.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/fac_air/img.pcx -------------------------------------------------------------------------------- /data/buildings/fac_air/info.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/fac_air/info.pcx -------------------------------------------------------------------------------- /data/buildings/fac_air/shw.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/fac_air/shw.pcx -------------------------------------------------------------------------------- /data/buildings/fac_air/video.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/fac_air/video.pcx -------------------------------------------------------------------------------- /data/buildings/fac_alien/img.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/fac_alien/img.pcx -------------------------------------------------------------------------------- /data/buildings/fac_alien/info.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/fac_alien/info.pcx -------------------------------------------------------------------------------- /data/buildings/fac_alien/shw.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/fac_alien/shw.pcx -------------------------------------------------------------------------------- /data/buildings/fac_alien/video.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/fac_alien/video.pcx -------------------------------------------------------------------------------- /data/buildings/fac_big/effect.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/fac_big/effect.pcx -------------------------------------------------------------------------------- /data/buildings/fac_big/img.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/fac_big/img.pcx -------------------------------------------------------------------------------- /data/buildings/fac_big/info.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/fac_big/info.pcx -------------------------------------------------------------------------------- /data/buildings/fac_big/shw.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/fac_big/shw.pcx -------------------------------------------------------------------------------- /data/buildings/fac_big/video.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/fac_big/video.pcx -------------------------------------------------------------------------------- /data/buildings/fac_ship/effect.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/fac_ship/effect.pcx -------------------------------------------------------------------------------- /data/buildings/fac_ship/img.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/fac_ship/img.pcx -------------------------------------------------------------------------------- /data/buildings/fac_ship/info.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/fac_ship/info.pcx -------------------------------------------------------------------------------- /data/buildings/fac_ship/shw.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/fac_ship/shw.pcx -------------------------------------------------------------------------------- /data/buildings/fac_ship/video.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/fac_ship/video.pcx -------------------------------------------------------------------------------- /data/buildings/fac_small/img.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/fac_small/img.pcx -------------------------------------------------------------------------------- /data/buildings/fac_small/info.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/fac_small/info.pcx -------------------------------------------------------------------------------- /data/buildings/fac_small/shw.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/fac_small/shw.pcx -------------------------------------------------------------------------------- /data/buildings/fac_small/video.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/fac_small/video.pcx -------------------------------------------------------------------------------- /data/buildings/goldraff/effect.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/goldraff/effect.pcx -------------------------------------------------------------------------------- /data/buildings/goldraff/img.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/goldraff/img.pcx -------------------------------------------------------------------------------- /data/buildings/goldraff/info.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/goldraff/info.pcx -------------------------------------------------------------------------------- /data/buildings/goldraff/shw.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/goldraff/shw.pcx -------------------------------------------------------------------------------- /data/buildings/goldraff/video.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/goldraff/video.pcx -------------------------------------------------------------------------------- /data/buildings/gun_aa/img.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/gun_aa/img.pcx -------------------------------------------------------------------------------- /data/buildings/gun_aa/info.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/gun_aa/info.pcx -------------------------------------------------------------------------------- /data/buildings/gun_aa/shw.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/gun_aa/shw.pcx -------------------------------------------------------------------------------- /data/buildings/gun_aa/video.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/gun_aa/video.pcx -------------------------------------------------------------------------------- /data/buildings/gun_ari/img.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/gun_ari/img.pcx -------------------------------------------------------------------------------- /data/buildings/gun_ari/info.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/gun_ari/info.pcx -------------------------------------------------------------------------------- /data/buildings/gun_ari/shw.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/gun_ari/shw.pcx -------------------------------------------------------------------------------- /data/buildings/gun_ari/video.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/gun_ari/video.pcx -------------------------------------------------------------------------------- /data/buildings/gun_missel/img.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/gun_missel/img.pcx -------------------------------------------------------------------------------- /data/buildings/gun_missel/info.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/gun_missel/info.pcx -------------------------------------------------------------------------------- /data/buildings/gun_missel/shw.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/gun_missel/shw.pcx -------------------------------------------------------------------------------- /data/buildings/gun_turret/img.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/gun_turret/img.pcx -------------------------------------------------------------------------------- /data/buildings/gun_turret/info.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/gun_turret/info.pcx -------------------------------------------------------------------------------- /data/buildings/gun_turret/shw.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/gun_turret/shw.pcx -------------------------------------------------------------------------------- /data/buildings/habitat/effect.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/habitat/effect.pcx -------------------------------------------------------------------------------- /data/buildings/habitat/img.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/habitat/img.pcx -------------------------------------------------------------------------------- /data/buildings/habitat/info.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/habitat/info.pcx -------------------------------------------------------------------------------- /data/buildings/habitat/shw.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/habitat/shw.pcx -------------------------------------------------------------------------------- /data/buildings/habitat/video.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/habitat/video.pcx -------------------------------------------------------------------------------- /data/buildings/hangar/effect.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/hangar/effect.pcx -------------------------------------------------------------------------------- /data/buildings/hangar/img.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/hangar/img.pcx -------------------------------------------------------------------------------- /data/buildings/hangar/info.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/hangar/info.pcx -------------------------------------------------------------------------------- /data/buildings/hangar/shw.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/hangar/shw.pcx -------------------------------------------------------------------------------- /data/buildings/hangar/video.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/hangar/video.pcx -------------------------------------------------------------------------------- /data/buildings/landmine/img.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/landmine/img.pcx -------------------------------------------------------------------------------- /data/buildings/landmine/info.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/landmine/info.pcx -------------------------------------------------------------------------------- /data/buildings/landmine/shw.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/landmine/shw.pcx -------------------------------------------------------------------------------- /data/buildings/landmine/video.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/landmine/video.pcx -------------------------------------------------------------------------------- /data/buildings/mine/effect.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/mine/effect.pcx -------------------------------------------------------------------------------- /data/buildings/mine/effect_org.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/mine/effect_org.pcx -------------------------------------------------------------------------------- /data/buildings/mine/img.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/mine/img.pcx -------------------------------------------------------------------------------- /data/buildings/mine/info.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/mine/info.pcx -------------------------------------------------------------------------------- /data/buildings/mine/roof.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/mine/roof.pcx -------------------------------------------------------------------------------- /data/buildings/mine/shw.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/mine/shw.pcx -------------------------------------------------------------------------------- /data/buildings/mine/video.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/mine/video.pcx -------------------------------------------------------------------------------- /data/buildings/pad/effect.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/pad/effect.pcx -------------------------------------------------------------------------------- /data/buildings/pad/effect_org.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/pad/effect_org.pcx -------------------------------------------------------------------------------- /data/buildings/pad/img.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/pad/img.pcx -------------------------------------------------------------------------------- /data/buildings/pad/info.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/pad/info.pcx -------------------------------------------------------------------------------- /data/buildings/pad/shw.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/pad/shw.pcx -------------------------------------------------------------------------------- /data/buildings/pad/video.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/pad/video.pcx -------------------------------------------------------------------------------- /data/buildings/platform/img.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/platform/img.pcx -------------------------------------------------------------------------------- /data/buildings/platform/info.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/platform/info.pcx -------------------------------------------------------------------------------- /data/buildings/platform/shw.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/platform/shw.pcx -------------------------------------------------------------------------------- /data/buildings/platform/video.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/platform/video.pcx -------------------------------------------------------------------------------- /data/buildings/radar/img.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/radar/img.pcx -------------------------------------------------------------------------------- /data/buildings/radar/info.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/radar/info.pcx -------------------------------------------------------------------------------- /data/buildings/radar/shw.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/radar/shw.pcx -------------------------------------------------------------------------------- /data/buildings/radar/video.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/radar/video.pcx -------------------------------------------------------------------------------- /data/buildings/research/effect.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/research/effect.pcx -------------------------------------------------------------------------------- /data/buildings/research/img.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/research/img.pcx -------------------------------------------------------------------------------- /data/buildings/research/info.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/research/info.pcx -------------------------------------------------------------------------------- /data/buildings/research/shw.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/research/shw.pcx -------------------------------------------------------------------------------- /data/buildings/research/video.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/research/video.pcx -------------------------------------------------------------------------------- /data/buildings/road/img.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/road/img.pcx -------------------------------------------------------------------------------- /data/buildings/road/info.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/road/info.pcx -------------------------------------------------------------------------------- /data/buildings/road/shw.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/road/shw.pcx -------------------------------------------------------------------------------- /data/buildings/road/video.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/road/video.pcx -------------------------------------------------------------------------------- /data/buildings/seamine/img.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/seamine/img.pcx -------------------------------------------------------------------------------- /data/buildings/seamine/info.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/seamine/info.pcx -------------------------------------------------------------------------------- /data/buildings/seamine/shw.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/seamine/shw.pcx -------------------------------------------------------------------------------- /data/buildings/seamine/video.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/seamine/video.pcx -------------------------------------------------------------------------------- /data/buildings/shield/effect.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/shield/effect.pcx -------------------------------------------------------------------------------- /data/buildings/storage_oil/img.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/storage_oil/img.pcx -------------------------------------------------------------------------------- /data/buildings/storage_oil/shw.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/storage_oil/shw.pcx -------------------------------------------------------------------------------- /data/buildings/training/effect.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/training/effect.pcx -------------------------------------------------------------------------------- /data/buildings/training/img.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/training/img.pcx -------------------------------------------------------------------------------- /data/buildings/training/info.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/training/info.pcx -------------------------------------------------------------------------------- /data/buildings/training/shw.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/training/shw.pcx -------------------------------------------------------------------------------- /data/buildings/training/video.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/buildings/training/video.pcx -------------------------------------------------------------------------------- /data/fonts/latin_big.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/fonts/latin_big.pcx -------------------------------------------------------------------------------- /data/fonts/latin_big_gold.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/fonts/latin_big_gold.pcx -------------------------------------------------------------------------------- /data/fonts/latin_normal.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/fonts/latin_normal.pcx -------------------------------------------------------------------------------- /data/fonts/latin_small.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/fonts/latin_small.pcx -------------------------------------------------------------------------------- /data/fx/absorb.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/fx/absorb.pcx -------------------------------------------------------------------------------- /data/fx/corpse.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/fx/corpse.pcx -------------------------------------------------------------------------------- /data/fx/dark_smoke.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/fx/dark_smoke.pcx -------------------------------------------------------------------------------- /data/fx/explo_air.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/fx/explo_air.pcx -------------------------------------------------------------------------------- /data/fx/explo_big.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/fx/explo_big.pcx -------------------------------------------------------------------------------- /data/fx/explo_small.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/fx/explo_small.pcx -------------------------------------------------------------------------------- /data/fx/explo_water.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/fx/explo_water.pcx -------------------------------------------------------------------------------- /data/fx/hit.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/fx/hit.pcx -------------------------------------------------------------------------------- /data/fx/muzzle_big.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/fx/muzzle_big.pcx -------------------------------------------------------------------------------- /data/fx/muzzle_med.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/fx/muzzle_med.pcx -------------------------------------------------------------------------------- /data/fx/muzzle_small.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/fx/muzzle_small.pcx -------------------------------------------------------------------------------- /data/fx/rocket.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/fx/rocket.pcx -------------------------------------------------------------------------------- /data/fx/smoke.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/fx/smoke.pcx -------------------------------------------------------------------------------- /data/fx/torpedo.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/fx/torpedo.pcx -------------------------------------------------------------------------------- /data/fx/tracks.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/fx/tracks.pcx -------------------------------------------------------------------------------- /data/gfx/activate.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/activate.pcx -------------------------------------------------------------------------------- /data/gfx/activate_field.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/activate_field.pcx -------------------------------------------------------------------------------- /data/gfx/attack.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/attack.pcx -------------------------------------------------------------------------------- /data/gfx/attack_oor.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/attack_oor.pcx -------------------------------------------------------------------------------- /data/gfx/band_big.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/band_big.pcx -------------------------------------------------------------------------------- /data/gfx/band_cur.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/band_cur.pcx -------------------------------------------------------------------------------- /data/gfx/band_small.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/band_small.pcx -------------------------------------------------------------------------------- /data/gfx/big_beton.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/big_beton.pcx -------------------------------------------------------------------------------- /data/gfx/build_screen.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/build_screen.pcx -------------------------------------------------------------------------------- /data/gfx/cl_aqua.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/cl_aqua.pcx -------------------------------------------------------------------------------- /data/gfx/cl_blue.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/cl_blue.pcx -------------------------------------------------------------------------------- /data/gfx/cl_green.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/cl_green.pcx -------------------------------------------------------------------------------- /data/gfx/cl_grey.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/cl_grey.pcx -------------------------------------------------------------------------------- /data/gfx/cl_orange.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/cl_orange.pcx -------------------------------------------------------------------------------- /data/gfx/cl_purple.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/cl_purple.pcx -------------------------------------------------------------------------------- /data/gfx/cl_red.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/cl_red.pcx -------------------------------------------------------------------------------- /data/gfx/cl_yellow.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/cl_yellow.pcx -------------------------------------------------------------------------------- /data/gfx/clanlogo1.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/clanlogo1.pcx -------------------------------------------------------------------------------- /data/gfx/clanlogo2.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/clanlogo2.pcx -------------------------------------------------------------------------------- /data/gfx/clanlogo3.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/clanlogo3.pcx -------------------------------------------------------------------------------- /data/gfx/clanlogo4.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/clanlogo4.pcx -------------------------------------------------------------------------------- /data/gfx/clanlogo5.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/clanlogo5.pcx -------------------------------------------------------------------------------- /data/gfx/clanlogo6.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/clanlogo6.pcx -------------------------------------------------------------------------------- /data/gfx/clanlogo7.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/clanlogo7.pcx -------------------------------------------------------------------------------- /data/gfx/clanlogo8.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/clanlogo8.pcx -------------------------------------------------------------------------------- /data/gfx/clanselection.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/clanselection.pcx -------------------------------------------------------------------------------- /data/gfx/customgame_menu.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/customgame_menu.pcx -------------------------------------------------------------------------------- /data/gfx/destruction.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/destruction.pcx -------------------------------------------------------------------------------- /data/gfx/destruction_glas.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/destruction_glas.pcx -------------------------------------------------------------------------------- /data/gfx/dialog.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/dialog.pcx -------------------------------------------------------------------------------- /data/gfx/dialog2.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/dialog2.pcx -------------------------------------------------------------------------------- /data/gfx/dialog3.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/dialog3.pcx -------------------------------------------------------------------------------- /data/gfx/dialog4.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/dialog4.pcx -------------------------------------------------------------------------------- /data/gfx/dialog5.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/dialog5.pcx -------------------------------------------------------------------------------- /data/gfx/dialog6.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/dialog6.pcx -------------------------------------------------------------------------------- /data/gfx/disable.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/disable.pcx -------------------------------------------------------------------------------- /data/gfx/edepot.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/edepot.pcx -------------------------------------------------------------------------------- /data/gfx/edock.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/edock.pcx -------------------------------------------------------------------------------- /data/gfx/ehangar.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/ehangar.pcx -------------------------------------------------------------------------------- /data/gfx/endgame/endgame1.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/endgame/endgame1.pcx -------------------------------------------------------------------------------- /data/gfx/fac_build_screen.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/fac_build_screen.pcx -------------------------------------------------------------------------------- /data/gfx/fuel.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/fuel.pcx -------------------------------------------------------------------------------- /data/gfx/gold.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/gold.pcx -------------------------------------------------------------------------------- /data/gfx/hand.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/hand.pcx -------------------------------------------------------------------------------- /data/gfx/hangar.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/hangar.pcx -------------------------------------------------------------------------------- /data/gfx/help.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/help.pcx -------------------------------------------------------------------------------- /data/gfx/help_screen.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/help_screen.pcx -------------------------------------------------------------------------------- /data/gfx/hotseatplayers.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/hotseatplayers.pcx -------------------------------------------------------------------------------- /data/gfx/hud_bottom.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/hud_bottom.pcx -------------------------------------------------------------------------------- /data/gfx/hud_chatbox.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/hud_chatbox.pcx -------------------------------------------------------------------------------- /data/gfx/hud_extra_players.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/hud_extra_players.pcx -------------------------------------------------------------------------------- /data/gfx/hud_left.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/hud_left.pcx -------------------------------------------------------------------------------- /data/gfx/hud_right.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/hud_right.pcx -------------------------------------------------------------------------------- /data/gfx/hud_stuff.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/hud_stuff.pcx -------------------------------------------------------------------------------- /data/gfx/hud_top.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/hud_top.pcx -------------------------------------------------------------------------------- /data/gfx/load.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/load.pcx -------------------------------------------------------------------------------- /data/gfx/load_save_menu.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/load_save_menu.pcx -------------------------------------------------------------------------------- /data/gfx/logo.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/logo.pcx -------------------------------------------------------------------------------- /data/gfx/main.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/main.pcx -------------------------------------------------------------------------------- /data/gfx/menu_buttons.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/menu_buttons.pcx -------------------------------------------------------------------------------- /data/gfx/menu_stuff.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/menu_stuff.pcx -------------------------------------------------------------------------------- /data/gfx/mine_manager.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/mine_manager.pcx -------------------------------------------------------------------------------- /data/gfx/move.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/move.pcx -------------------------------------------------------------------------------- /data/gfx/move_draft.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/move_draft.pcx -------------------------------------------------------------------------------- /data/gfx/multi.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/multi.pcx -------------------------------------------------------------------------------- /data/gfx/muni.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/muni.pcx -------------------------------------------------------------------------------- /data/gfx/no.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/no.pcx -------------------------------------------------------------------------------- /data/gfx/object_menu2.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/object_menu2.pcx -------------------------------------------------------------------------------- /data/gfx/options.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/options.pcx -------------------------------------------------------------------------------- /data/gfx/panel_bottom.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/panel_bottom.pcx -------------------------------------------------------------------------------- /data/gfx/panel_top.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/panel_top.pcx -------------------------------------------------------------------------------- /data/gfx/pf_1.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/pf_1.pcx -------------------------------------------------------------------------------- /data/gfx/pf_2.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/pf_2.pcx -------------------------------------------------------------------------------- /data/gfx/pf_3.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/pf_3.pcx -------------------------------------------------------------------------------- /data/gfx/pf_4.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/pf_4.pcx -------------------------------------------------------------------------------- /data/gfx/pf_6.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/pf_6.pcx -------------------------------------------------------------------------------- /data/gfx/pf_7.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/pf_7.pcx -------------------------------------------------------------------------------- /data/gfx/pf_8.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/pf_8.pcx -------------------------------------------------------------------------------- /data/gfx/pf_9.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/pf_9.pcx -------------------------------------------------------------------------------- /data/gfx/planet_select.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/planet_select.pcx -------------------------------------------------------------------------------- /data/gfx/player_human.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/player_human.pcx -------------------------------------------------------------------------------- /data/gfx/player_none.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/player_none.pcx -------------------------------------------------------------------------------- /data/gfx/player_pc.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/player_pc.pcx -------------------------------------------------------------------------------- /data/gfx/player_ready.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/player_ready.pcx -------------------------------------------------------------------------------- /data/gfx/repair.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/repair.pcx -------------------------------------------------------------------------------- /data/gfx/reports.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/reports.pcx -------------------------------------------------------------------------------- /data/gfx/res.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/res.pcx -------------------------------------------------------------------------------- /data/gfx/research.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/research.pcx -------------------------------------------------------------------------------- /data/gfx/select.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/select.pcx -------------------------------------------------------------------------------- /data/gfx/steal.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/steal.pcx -------------------------------------------------------------------------------- /data/gfx/storage.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/storage.pcx -------------------------------------------------------------------------------- /data/gfx/storage_ground.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/storage_ground.pcx -------------------------------------------------------------------------------- /data/gfx/transf.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/transf.pcx -------------------------------------------------------------------------------- /data/gfx/transfer.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/transfer.pcx -------------------------------------------------------------------------------- /data/gfx/upgrade.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/gfx/upgrade.pcx -------------------------------------------------------------------------------- /data/init.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/init.pcx -------------------------------------------------------------------------------- /data/maps/Delta.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/maps/Delta.wrl -------------------------------------------------------------------------------- /data/maps/Donuts.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/maps/Donuts.wrl -------------------------------------------------------------------------------- /data/maps/Lava.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/maps/Lava.wrl -------------------------------------------------------------------------------- /data/maps/Mushroom.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/maps/Mushroom.wrl -------------------------------------------------------------------------------- /data/maps/Three Isles.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/maps/Three Isles.wrl -------------------------------------------------------------------------------- /data/maxr.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/maxr.bmp -------------------------------------------------------------------------------- /data/maxr.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/maxr.ico -------------------------------------------------------------------------------- /data/maxr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/maxr.png -------------------------------------------------------------------------------- /data/mve/.empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/mve/.empty -------------------------------------------------------------------------------- /data/sounds/Chat.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/sounds/Chat.ogg -------------------------------------------------------------------------------- /data/sounds/absorb.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/sounds/absorb.ogg -------------------------------------------------------------------------------- /data/sounds/arm.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/sounds/arm.ogg -------------------------------------------------------------------------------- /data/sounds/dummy.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/sounds/dummy.ogg -------------------------------------------------------------------------------- /data/vehicles/alien_plane/img0.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/alien_plane/img0.pcx -------------------------------------------------------------------------------- /data/vehicles/alien_plane/img1.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/alien_plane/img1.pcx -------------------------------------------------------------------------------- /data/vehicles/alien_plane/img2.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/alien_plane/img2.pcx -------------------------------------------------------------------------------- /data/vehicles/alien_plane/img3.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/alien_plane/img3.pcx -------------------------------------------------------------------------------- /data/vehicles/alien_plane/img4.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/alien_plane/img4.pcx -------------------------------------------------------------------------------- /data/vehicles/alien_plane/img5.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/alien_plane/img5.pcx -------------------------------------------------------------------------------- /data/vehicles/alien_plane/img6.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/alien_plane/img6.pcx -------------------------------------------------------------------------------- /data/vehicles/alien_plane/img7.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/alien_plane/img7.pcx -------------------------------------------------------------------------------- /data/vehicles/alien_plane/info.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/alien_plane/info.pcx -------------------------------------------------------------------------------- /data/vehicles/alien_plane/shw0.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/alien_plane/shw0.pcx -------------------------------------------------------------------------------- /data/vehicles/alien_plane/shw1.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/alien_plane/shw1.pcx -------------------------------------------------------------------------------- /data/vehicles/alien_plane/shw2.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/alien_plane/shw2.pcx -------------------------------------------------------------------------------- /data/vehicles/alien_plane/shw3.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/alien_plane/shw3.pcx -------------------------------------------------------------------------------- /data/vehicles/alien_plane/shw4.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/alien_plane/shw4.pcx -------------------------------------------------------------------------------- /data/vehicles/alien_plane/shw5.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/alien_plane/shw5.pcx -------------------------------------------------------------------------------- /data/vehicles/alien_plane/shw6.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/alien_plane/shw6.pcx -------------------------------------------------------------------------------- /data/vehicles/alien_plane/shw7.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/alien_plane/shw7.pcx -------------------------------------------------------------------------------- /data/vehicles/alien_ship/img0.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/alien_ship/img0.pcx -------------------------------------------------------------------------------- /data/vehicles/alien_ship/img1.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/alien_ship/img1.pcx -------------------------------------------------------------------------------- /data/vehicles/alien_ship/img2.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/alien_ship/img2.pcx -------------------------------------------------------------------------------- /data/vehicles/alien_ship/img3.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/alien_ship/img3.pcx -------------------------------------------------------------------------------- /data/vehicles/alien_ship/img4.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/alien_ship/img4.pcx -------------------------------------------------------------------------------- /data/vehicles/alien_ship/img5.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/alien_ship/img5.pcx -------------------------------------------------------------------------------- /data/vehicles/alien_ship/img6.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/alien_ship/img6.pcx -------------------------------------------------------------------------------- /data/vehicles/alien_ship/img7.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/alien_ship/img7.pcx -------------------------------------------------------------------------------- /data/vehicles/alien_ship/info.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/alien_ship/info.pcx -------------------------------------------------------------------------------- /data/vehicles/alien_ship/shw0.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/alien_ship/shw0.pcx -------------------------------------------------------------------------------- /data/vehicles/alien_ship/shw1.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/alien_ship/shw1.pcx -------------------------------------------------------------------------------- /data/vehicles/alien_ship/shw2.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/alien_ship/shw2.pcx -------------------------------------------------------------------------------- /data/vehicles/alien_ship/shw3.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/alien_ship/shw3.pcx -------------------------------------------------------------------------------- /data/vehicles/alien_ship/shw4.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/alien_ship/shw4.pcx -------------------------------------------------------------------------------- /data/vehicles/alien_ship/shw5.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/alien_ship/shw5.pcx -------------------------------------------------------------------------------- /data/vehicles/alien_ship/shw6.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/alien_ship/shw6.pcx -------------------------------------------------------------------------------- /data/vehicles/alien_ship/shw7.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/alien_ship/shw7.pcx -------------------------------------------------------------------------------- /data/vehicles/alien_ship/store.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/alien_ship/store.pcx -------------------------------------------------------------------------------- /data/vehicles/alien_ship/video.flc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/alien_ship/video.flc -------------------------------------------------------------------------------- /data/vehicles/alien_tank/img0.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/alien_tank/img0.pcx -------------------------------------------------------------------------------- /data/vehicles/alien_tank/img1.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/alien_tank/img1.pcx -------------------------------------------------------------------------------- /data/vehicles/alien_tank/img2.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/alien_tank/img2.pcx -------------------------------------------------------------------------------- /data/vehicles/alien_tank/img3.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/alien_tank/img3.pcx -------------------------------------------------------------------------------- /data/vehicles/alien_tank/img4.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/alien_tank/img4.pcx -------------------------------------------------------------------------------- /data/vehicles/alien_tank/img5.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/alien_tank/img5.pcx -------------------------------------------------------------------------------- /data/vehicles/alien_tank/img6.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/alien_tank/img6.pcx -------------------------------------------------------------------------------- /data/vehicles/alien_tank/img7.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/alien_tank/img7.pcx -------------------------------------------------------------------------------- /data/vehicles/alien_tank/info.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/alien_tank/info.pcx -------------------------------------------------------------------------------- /data/vehicles/alien_tank/shw0.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/alien_tank/shw0.pcx -------------------------------------------------------------------------------- /data/vehicles/alien_tank/shw1.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/alien_tank/shw1.pcx -------------------------------------------------------------------------------- /data/vehicles/alien_tank/shw2.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/alien_tank/shw2.pcx -------------------------------------------------------------------------------- /data/vehicles/alien_tank/shw3.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/alien_tank/shw3.pcx -------------------------------------------------------------------------------- /data/vehicles/alien_tank/shw4.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/alien_tank/shw4.pcx -------------------------------------------------------------------------------- /data/vehicles/alien_tank/shw5.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/alien_tank/shw5.pcx -------------------------------------------------------------------------------- /data/vehicles/alien_tank/shw6.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/alien_tank/shw6.pcx -------------------------------------------------------------------------------- /data/vehicles/alien_tank/shw7.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/alien_tank/shw7.pcx -------------------------------------------------------------------------------- /data/vehicles/alien_tank/store.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/alien_tank/store.pcx -------------------------------------------------------------------------------- /data/vehicles/alien_tank/video.flc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/alien_tank/video.flc -------------------------------------------------------------------------------- /data/vehicles/apc/img0.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/apc/img0.pcx -------------------------------------------------------------------------------- /data/vehicles/apc/img1.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/apc/img1.pcx -------------------------------------------------------------------------------- /data/vehicles/apc/img2.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/apc/img2.pcx -------------------------------------------------------------------------------- /data/vehicles/apc/img3.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/apc/img3.pcx -------------------------------------------------------------------------------- /data/vehicles/apc/img4.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/apc/img4.pcx -------------------------------------------------------------------------------- /data/vehicles/apc/img5.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/apc/img5.pcx -------------------------------------------------------------------------------- /data/vehicles/apc/img6.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/apc/img6.pcx -------------------------------------------------------------------------------- /data/vehicles/apc/img7.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/apc/img7.pcx -------------------------------------------------------------------------------- /data/vehicles/apc/info.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/apc/info.pcx -------------------------------------------------------------------------------- /data/vehicles/apc/shw0.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/apc/shw0.pcx -------------------------------------------------------------------------------- /data/vehicles/apc/shw1.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/apc/shw1.pcx -------------------------------------------------------------------------------- /data/vehicles/apc/shw2.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/apc/shw2.pcx -------------------------------------------------------------------------------- /data/vehicles/apc/shw3.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/apc/shw3.pcx -------------------------------------------------------------------------------- /data/vehicles/apc/shw4.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/apc/shw4.pcx -------------------------------------------------------------------------------- /data/vehicles/apc/shw5.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/apc/shw5.pcx -------------------------------------------------------------------------------- /data/vehicles/apc/shw6.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/apc/shw6.pcx -------------------------------------------------------------------------------- /data/vehicles/apc/shw7.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/apc/shw7.pcx -------------------------------------------------------------------------------- /data/vehicles/apc/store.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/apc/store.pcx -------------------------------------------------------------------------------- /data/vehicles/apc/video.flc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/apc/video.flc -------------------------------------------------------------------------------- /data/vehicles/assault/img0.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/assault/img0.pcx -------------------------------------------------------------------------------- /data/vehicles/assault/img1.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/assault/img1.pcx -------------------------------------------------------------------------------- /data/vehicles/assault/img2.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/assault/img2.pcx -------------------------------------------------------------------------------- /data/vehicles/assault/img3.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/assault/img3.pcx -------------------------------------------------------------------------------- /data/vehicles/assault/img4.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/assault/img4.pcx -------------------------------------------------------------------------------- /data/vehicles/assault/img5.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/assault/img5.pcx -------------------------------------------------------------------------------- /data/vehicles/assault/img6.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/assault/img6.pcx -------------------------------------------------------------------------------- /data/vehicles/assault/img7.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/assault/img7.pcx -------------------------------------------------------------------------------- /data/vehicles/assault/info.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/assault/info.pcx -------------------------------------------------------------------------------- /data/vehicles/assault/shw0.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/assault/shw0.pcx -------------------------------------------------------------------------------- /data/vehicles/assault/shw1.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/assault/shw1.pcx -------------------------------------------------------------------------------- /data/vehicles/assault/shw2.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/assault/shw2.pcx -------------------------------------------------------------------------------- /data/vehicles/assault/shw3.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/assault/shw3.pcx -------------------------------------------------------------------------------- /data/vehicles/assault/shw4.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/assault/shw4.pcx -------------------------------------------------------------------------------- /data/vehicles/assault/shw5.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/assault/shw5.pcx -------------------------------------------------------------------------------- /data/vehicles/assault/shw6.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/assault/shw6.pcx -------------------------------------------------------------------------------- /data/vehicles/assault/shw7.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/assault/shw7.pcx -------------------------------------------------------------------------------- /data/vehicles/assault/store.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/assault/store.pcx -------------------------------------------------------------------------------- /data/vehicles/assault/video.flc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/assault/video.flc -------------------------------------------------------------------------------- /data/vehicles/awac/drive.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/awac/drive.ogg -------------------------------------------------------------------------------- /data/vehicles/awac/img0.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/awac/img0.pcx -------------------------------------------------------------------------------- /data/vehicles/awac/img1.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/awac/img1.pcx -------------------------------------------------------------------------------- /data/vehicles/awac/img2.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/awac/img2.pcx -------------------------------------------------------------------------------- /data/vehicles/awac/img3.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/awac/img3.pcx -------------------------------------------------------------------------------- /data/vehicles/awac/img4.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/awac/img4.pcx -------------------------------------------------------------------------------- /data/vehicles/awac/img5.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/awac/img5.pcx -------------------------------------------------------------------------------- /data/vehicles/awac/img6.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/awac/img6.pcx -------------------------------------------------------------------------------- /data/vehicles/awac/img7.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/awac/img7.pcx -------------------------------------------------------------------------------- /data/vehicles/awac/info.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/awac/info.pcx -------------------------------------------------------------------------------- /data/vehicles/awac/overlay.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/awac/overlay.pcx -------------------------------------------------------------------------------- /data/vehicles/awac/shw0.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/awac/shw0.pcx -------------------------------------------------------------------------------- /data/vehicles/awac/shw1.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/awac/shw1.pcx -------------------------------------------------------------------------------- /data/vehicles/awac/shw2.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/awac/shw2.pcx -------------------------------------------------------------------------------- /data/vehicles/awac/shw3.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/awac/shw3.pcx -------------------------------------------------------------------------------- /data/vehicles/awac/shw4.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/awac/shw4.pcx -------------------------------------------------------------------------------- /data/vehicles/awac/shw5.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/awac/shw5.pcx -------------------------------------------------------------------------------- /data/vehicles/awac/shw6.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/awac/shw6.pcx -------------------------------------------------------------------------------- /data/vehicles/awac/shw7.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/awac/shw7.pcx -------------------------------------------------------------------------------- /data/vehicles/awac/start.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/awac/start.ogg -------------------------------------------------------------------------------- /data/vehicles/awac/stop.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/awac/stop.ogg -------------------------------------------------------------------------------- /data/vehicles/awac/store.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/awac/store.pcx -------------------------------------------------------------------------------- /data/vehicles/awac/video.flc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/awac/video.flc -------------------------------------------------------------------------------- /data/vehicles/awac/wait.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/awac/wait.ogg -------------------------------------------------------------------------------- /data/vehicles/bomber/img0.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/bomber/img0.pcx -------------------------------------------------------------------------------- /data/vehicles/bomber/img1.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/bomber/img1.pcx -------------------------------------------------------------------------------- /data/vehicles/bomber/img2.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/bomber/img2.pcx -------------------------------------------------------------------------------- /data/vehicles/bomber/img3.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/bomber/img3.pcx -------------------------------------------------------------------------------- /data/vehicles/bomber/img4.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/bomber/img4.pcx -------------------------------------------------------------------------------- /data/vehicles/bomber/img5.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/bomber/img5.pcx -------------------------------------------------------------------------------- /data/vehicles/bomber/img6.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/bomber/img6.pcx -------------------------------------------------------------------------------- /data/vehicles/bomber/img7.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/bomber/img7.pcx -------------------------------------------------------------------------------- /data/vehicles/bomber/info.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/bomber/info.pcx -------------------------------------------------------------------------------- /data/vehicles/bomber/shw0.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/bomber/shw0.pcx -------------------------------------------------------------------------------- /data/vehicles/bomber/shw1.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/bomber/shw1.pcx -------------------------------------------------------------------------------- /data/vehicles/bomber/shw2.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/bomber/shw2.pcx -------------------------------------------------------------------------------- /data/vehicles/bomber/shw3.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/bomber/shw3.pcx -------------------------------------------------------------------------------- /data/vehicles/bomber/shw4.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/bomber/shw4.pcx -------------------------------------------------------------------------------- /data/vehicles/bomber/shw5.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/bomber/shw5.pcx -------------------------------------------------------------------------------- /data/vehicles/bomber/shw6.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/bomber/shw6.pcx -------------------------------------------------------------------------------- /data/vehicles/bomber/shw7.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/bomber/shw7.pcx -------------------------------------------------------------------------------- /data/vehicles/bomber/store.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/bomber/store.pcx -------------------------------------------------------------------------------- /data/vehicles/bomber/video.flc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/bomber/video.flc -------------------------------------------------------------------------------- /data/vehicles/bulldozer/img0.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/bulldozer/img0.pcx -------------------------------------------------------------------------------- /data/vehicles/bulldozer/img1.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/bulldozer/img1.pcx -------------------------------------------------------------------------------- /data/vehicles/bulldozer/img2.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/bulldozer/img2.pcx -------------------------------------------------------------------------------- /data/vehicles/bulldozer/img3.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/bulldozer/img3.pcx -------------------------------------------------------------------------------- /data/vehicles/bulldozer/img4.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/bulldozer/img4.pcx -------------------------------------------------------------------------------- /data/vehicles/bulldozer/img5.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/bulldozer/img5.pcx -------------------------------------------------------------------------------- /data/vehicles/bulldozer/img6.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/bulldozer/img6.pcx -------------------------------------------------------------------------------- /data/vehicles/bulldozer/img7.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/bulldozer/img7.pcx -------------------------------------------------------------------------------- /data/vehicles/bulldozer/info.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/bulldozer/info.pcx -------------------------------------------------------------------------------- /data/vehicles/bulldozer/shw0.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/bulldozer/shw0.pcx -------------------------------------------------------------------------------- /data/vehicles/bulldozer/shw1.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/bulldozer/shw1.pcx -------------------------------------------------------------------------------- /data/vehicles/bulldozer/shw2.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/bulldozer/shw2.pcx -------------------------------------------------------------------------------- /data/vehicles/bulldozer/shw3.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/bulldozer/shw3.pcx -------------------------------------------------------------------------------- /data/vehicles/bulldozer/shw4.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/bulldozer/shw4.pcx -------------------------------------------------------------------------------- /data/vehicles/bulldozer/shw5.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/bulldozer/shw5.pcx -------------------------------------------------------------------------------- /data/vehicles/bulldozer/shw6.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/bulldozer/shw6.pcx -------------------------------------------------------------------------------- /data/vehicles/bulldozer/shw7.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/bulldozer/shw7.pcx -------------------------------------------------------------------------------- /data/vehicles/bulldozer/store.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/bulldozer/store.pcx -------------------------------------------------------------------------------- /data/vehicles/bulldozer/video.flc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/bulldozer/video.flc -------------------------------------------------------------------------------- /data/vehicles/cargoship/img0.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/cargoship/img0.pcx -------------------------------------------------------------------------------- /data/vehicles/cargoship/img1.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/cargoship/img1.pcx -------------------------------------------------------------------------------- /data/vehicles/cargoship/img2.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/cargoship/img2.pcx -------------------------------------------------------------------------------- /data/vehicles/cargoship/img3.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/cargoship/img3.pcx -------------------------------------------------------------------------------- /data/vehicles/cargoship/img4.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/cargoship/img4.pcx -------------------------------------------------------------------------------- /data/vehicles/cargoship/img5.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/cargoship/img5.pcx -------------------------------------------------------------------------------- /data/vehicles/cargoship/img6.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/cargoship/img6.pcx -------------------------------------------------------------------------------- /data/vehicles/cargoship/img7.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/cargoship/img7.pcx -------------------------------------------------------------------------------- /data/vehicles/cargoship/info.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/cargoship/info.pcx -------------------------------------------------------------------------------- /data/vehicles/cargoship/shw0.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/cargoship/shw0.pcx -------------------------------------------------------------------------------- /data/vehicles/cargoship/shw1.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/cargoship/shw1.pcx -------------------------------------------------------------------------------- /data/vehicles/cargoship/shw2.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/cargoship/shw2.pcx -------------------------------------------------------------------------------- /data/vehicles/cargoship/shw3.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/cargoship/shw3.pcx -------------------------------------------------------------------------------- /data/vehicles/cargoship/shw4.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/cargoship/shw4.pcx -------------------------------------------------------------------------------- /data/vehicles/cargoship/shw5.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/cargoship/shw5.pcx -------------------------------------------------------------------------------- /data/vehicles/cargoship/shw6.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/cargoship/shw6.pcx -------------------------------------------------------------------------------- /data/vehicles/cargoship/shw7.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/cargoship/shw7.pcx -------------------------------------------------------------------------------- /data/vehicles/cargoship/store.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/cargoship/store.pcx -------------------------------------------------------------------------------- /data/vehicles/cargoship/video.flc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/cargoship/video.flc -------------------------------------------------------------------------------- /data/vehicles/cluster/img0.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/cluster/img0.pcx -------------------------------------------------------------------------------- /data/vehicles/cluster/img1.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/cluster/img1.pcx -------------------------------------------------------------------------------- /data/vehicles/cluster/img2.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/cluster/img2.pcx -------------------------------------------------------------------------------- /data/vehicles/cluster/img3.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/cluster/img3.pcx -------------------------------------------------------------------------------- /data/vehicles/cluster/img4.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/cluster/img4.pcx -------------------------------------------------------------------------------- /data/vehicles/cluster/img5.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/cluster/img5.pcx -------------------------------------------------------------------------------- /data/vehicles/cluster/img6.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/cluster/img6.pcx -------------------------------------------------------------------------------- /data/vehicles/cluster/img7.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/cluster/img7.pcx -------------------------------------------------------------------------------- /data/vehicles/cluster/info.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/cluster/info.pcx -------------------------------------------------------------------------------- /data/vehicles/cluster/shw0.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/cluster/shw0.pcx -------------------------------------------------------------------------------- /data/vehicles/cluster/shw1.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/cluster/shw1.pcx -------------------------------------------------------------------------------- /data/vehicles/cluster/shw2.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/cluster/shw2.pcx -------------------------------------------------------------------------------- /data/vehicles/cluster/shw3.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/cluster/shw3.pcx -------------------------------------------------------------------------------- /data/vehicles/cluster/shw4.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/cluster/shw4.pcx -------------------------------------------------------------------------------- /data/vehicles/cluster/shw5.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/cluster/shw5.pcx -------------------------------------------------------------------------------- /data/vehicles/cluster/shw6.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/cluster/shw6.pcx -------------------------------------------------------------------------------- /data/vehicles/cluster/shw7.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/cluster/shw7.pcx -------------------------------------------------------------------------------- /data/vehicles/cluster/store.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/cluster/store.pcx -------------------------------------------------------------------------------- /data/vehicles/cluster/video.flc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/cluster/video.flc -------------------------------------------------------------------------------- /data/vehicles/commando/img0_00.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/commando/img0_00.pcx -------------------------------------------------------------------------------- /data/vehicles/commando/img0_01.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/commando/img0_01.pcx -------------------------------------------------------------------------------- /data/vehicles/commando/img0_02.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/commando/img0_02.pcx -------------------------------------------------------------------------------- /data/vehicles/commando/img0_03.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/commando/img0_03.pcx -------------------------------------------------------------------------------- /data/vehicles/commando/img0_04.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/commando/img0_04.pcx -------------------------------------------------------------------------------- /data/vehicles/commando/img0_05.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/commando/img0_05.pcx -------------------------------------------------------------------------------- /data/vehicles/commando/info.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/commando/info.pcx -------------------------------------------------------------------------------- /data/vehicles/commando/store.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/commando/store.pcx -------------------------------------------------------------------------------- /data/vehicles/commando/video.flc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/commando/video.flc -------------------------------------------------------------------------------- /data/vehicles/corvet/img0.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/corvet/img0.pcx -------------------------------------------------------------------------------- /data/vehicles/corvet/img1.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/corvet/img1.pcx -------------------------------------------------------------------------------- /data/vehicles/corvet/img2.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/corvet/img2.pcx -------------------------------------------------------------------------------- /data/vehicles/corvet/img3.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/corvet/img3.pcx -------------------------------------------------------------------------------- /data/vehicles/corvet/img4.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/corvet/img4.pcx -------------------------------------------------------------------------------- /data/vehicles/corvet/img5.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/corvet/img5.pcx -------------------------------------------------------------------------------- /data/vehicles/corvet/img6.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/corvet/img6.pcx -------------------------------------------------------------------------------- /data/vehicles/corvet/img7.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/corvet/img7.pcx -------------------------------------------------------------------------------- /data/vehicles/corvet/info.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/corvet/info.pcx -------------------------------------------------------------------------------- /data/vehicles/corvet/shw0.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/corvet/shw0.pcx -------------------------------------------------------------------------------- /data/vehicles/corvet/shw1.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/corvet/shw1.pcx -------------------------------------------------------------------------------- /data/vehicles/corvet/shw2.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/corvet/shw2.pcx -------------------------------------------------------------------------------- /data/vehicles/corvet/shw3.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/corvet/shw3.pcx -------------------------------------------------------------------------------- /data/vehicles/corvet/shw4.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/corvet/shw4.pcx -------------------------------------------------------------------------------- /data/vehicles/corvet/shw5.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/corvet/shw5.pcx -------------------------------------------------------------------------------- /data/vehicles/corvet/shw6.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/corvet/shw6.pcx -------------------------------------------------------------------------------- /data/vehicles/corvet/shw7.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/corvet/shw7.pcx -------------------------------------------------------------------------------- /data/vehicles/corvet/store.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/corvet/store.pcx -------------------------------------------------------------------------------- /data/vehicles/corvet/video.flc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/corvet/video.flc -------------------------------------------------------------------------------- /data/vehicles/escort/img0.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/escort/img0.pcx -------------------------------------------------------------------------------- /data/vehicles/escort/img1.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/escort/img1.pcx -------------------------------------------------------------------------------- /data/vehicles/escort/img2.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/escort/img2.pcx -------------------------------------------------------------------------------- /data/vehicles/escort/img3.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/escort/img3.pcx -------------------------------------------------------------------------------- /data/vehicles/escort/img4.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/escort/img4.pcx -------------------------------------------------------------------------------- /data/vehicles/escort/img5.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/escort/img5.pcx -------------------------------------------------------------------------------- /data/vehicles/escort/img6.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/escort/img6.pcx -------------------------------------------------------------------------------- /data/vehicles/escort/img7.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/escort/img7.pcx -------------------------------------------------------------------------------- /data/vehicles/escort/info.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/escort/info.pcx -------------------------------------------------------------------------------- /data/vehicles/escort/shw0.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/escort/shw0.pcx -------------------------------------------------------------------------------- /data/vehicles/escort/shw1.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/escort/shw1.pcx -------------------------------------------------------------------------------- /data/vehicles/escort/shw2.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/escort/shw2.pcx -------------------------------------------------------------------------------- /data/vehicles/escort/shw3.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/escort/shw3.pcx -------------------------------------------------------------------------------- /data/vehicles/escort/shw4.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/escort/shw4.pcx -------------------------------------------------------------------------------- /data/vehicles/escort/shw5.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/escort/shw5.pcx -------------------------------------------------------------------------------- /data/vehicles/escort/shw6.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/escort/shw6.pcx -------------------------------------------------------------------------------- /data/vehicles/escort/shw7.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/escort/shw7.pcx -------------------------------------------------------------------------------- /data/vehicles/escort/store.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/escort/store.pcx -------------------------------------------------------------------------------- /data/vehicles/escort/video.flc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/escort/video.flc -------------------------------------------------------------------------------- /data/vehicles/fighter/img0.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/fighter/img0.pcx -------------------------------------------------------------------------------- /data/vehicles/fighter/img1.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/fighter/img1.pcx -------------------------------------------------------------------------------- /data/vehicles/fighter/img2.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/fighter/img2.pcx -------------------------------------------------------------------------------- /data/vehicles/fighter/img3.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/fighter/img3.pcx -------------------------------------------------------------------------------- /data/vehicles/fighter/img4.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/fighter/img4.pcx -------------------------------------------------------------------------------- /data/vehicles/fighter/img5.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/fighter/img5.pcx -------------------------------------------------------------------------------- /data/vehicles/fighter/img6.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/fighter/img6.pcx -------------------------------------------------------------------------------- /data/vehicles/fighter/img7.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/fighter/img7.pcx -------------------------------------------------------------------------------- /data/vehicles/fighter/info.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/fighter/info.pcx -------------------------------------------------------------------------------- /data/vehicles/fighter/shw0.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/fighter/shw0.pcx -------------------------------------------------------------------------------- /data/vehicles/fighter/shw1.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/fighter/shw1.pcx -------------------------------------------------------------------------------- /data/vehicles/fighter/shw2.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/fighter/shw2.pcx -------------------------------------------------------------------------------- /data/vehicles/fighter/shw3.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/fighter/shw3.pcx -------------------------------------------------------------------------------- /data/vehicles/fighter/shw4.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/fighter/shw4.pcx -------------------------------------------------------------------------------- /data/vehicles/fighter/shw5.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/fighter/shw5.pcx -------------------------------------------------------------------------------- /data/vehicles/fighter/shw6.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/fighter/shw6.pcx -------------------------------------------------------------------------------- /data/vehicles/fighter/shw7.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/fighter/shw7.pcx -------------------------------------------------------------------------------- /data/vehicles/fighter/store.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/fighter/store.pcx -------------------------------------------------------------------------------- /data/vehicles/fighter/video.flc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/fighter/video.flc -------------------------------------------------------------------------------- /data/vehicles/gunboat/img0.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/gunboat/img0.pcx -------------------------------------------------------------------------------- /data/vehicles/gunboat/img1.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/gunboat/img1.pcx -------------------------------------------------------------------------------- /data/vehicles/gunboat/img2.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/gunboat/img2.pcx -------------------------------------------------------------------------------- /data/vehicles/gunboat/img3.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/gunboat/img3.pcx -------------------------------------------------------------------------------- /data/vehicles/gunboat/img4.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/gunboat/img4.pcx -------------------------------------------------------------------------------- /data/vehicles/gunboat/img5.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/gunboat/img5.pcx -------------------------------------------------------------------------------- /data/vehicles/gunboat/img6.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/gunboat/img6.pcx -------------------------------------------------------------------------------- /data/vehicles/gunboat/img7.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/gunboat/img7.pcx -------------------------------------------------------------------------------- /data/vehicles/gunboat/info.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/gunboat/info.pcx -------------------------------------------------------------------------------- /data/vehicles/gunboat/shw0.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/gunboat/shw0.pcx -------------------------------------------------------------------------------- /data/vehicles/gunboat/shw1.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/gunboat/shw1.pcx -------------------------------------------------------------------------------- /data/vehicles/gunboat/shw2.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/gunboat/shw2.pcx -------------------------------------------------------------------------------- /data/vehicles/gunboat/shw3.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/gunboat/shw3.pcx -------------------------------------------------------------------------------- /data/vehicles/gunboat/shw4.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/gunboat/shw4.pcx -------------------------------------------------------------------------------- /data/vehicles/gunboat/shw5.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/gunboat/shw5.pcx -------------------------------------------------------------------------------- /data/vehicles/gunboat/shw6.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/gunboat/shw6.pcx -------------------------------------------------------------------------------- /data/vehicles/gunboat/shw7.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/gunboat/shw7.pcx -------------------------------------------------------------------------------- /data/vehicles/gunboat/store.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/gunboat/store.pcx -------------------------------------------------------------------------------- /data/vehicles/gunboat/video.flc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/gunboat/video.flc -------------------------------------------------------------------------------- /data/vehicles/infantery/info.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/infantery/info.pcx -------------------------------------------------------------------------------- /data/vehicles/konstrukt/img0.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/konstrukt/img0.pcx -------------------------------------------------------------------------------- /data/vehicles/konstrukt/img1.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/konstrukt/img1.pcx -------------------------------------------------------------------------------- /data/vehicles/konstrukt/img2.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/konstrukt/img2.pcx -------------------------------------------------------------------------------- /data/vehicles/konstrukt/img3.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/konstrukt/img3.pcx -------------------------------------------------------------------------------- /data/vehicles/konstrukt/img4.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/konstrukt/img4.pcx -------------------------------------------------------------------------------- /data/vehicles/konstrukt/img5.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/konstrukt/img5.pcx -------------------------------------------------------------------------------- /data/vehicles/konstrukt/img6.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/konstrukt/img6.pcx -------------------------------------------------------------------------------- /data/vehicles/konstrukt/img7.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/konstrukt/img7.pcx -------------------------------------------------------------------------------- /data/vehicles/konstrukt/info.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/konstrukt/info.pcx -------------------------------------------------------------------------------- /data/vehicles/konstrukt/shw0.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/konstrukt/shw0.pcx -------------------------------------------------------------------------------- /data/vehicles/konstrukt/shw1.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/konstrukt/shw1.pcx -------------------------------------------------------------------------------- /data/vehicles/konstrukt/shw2.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/konstrukt/shw2.pcx -------------------------------------------------------------------------------- /data/vehicles/konstrukt/shw3.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/konstrukt/shw3.pcx -------------------------------------------------------------------------------- /data/vehicles/konstrukt/shw4.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/konstrukt/shw4.pcx -------------------------------------------------------------------------------- /data/vehicles/konstrukt/shw5.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/konstrukt/shw5.pcx -------------------------------------------------------------------------------- /data/vehicles/konstrukt/shw6.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/konstrukt/shw6.pcx -------------------------------------------------------------------------------- /data/vehicles/konstrukt/shw7.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/konstrukt/shw7.pcx -------------------------------------------------------------------------------- /data/vehicles/minelayer/img0.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/minelayer/img0.pcx -------------------------------------------------------------------------------- /data/vehicles/minelayer/img1.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/minelayer/img1.pcx -------------------------------------------------------------------------------- /data/vehicles/minelayer/img2.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/minelayer/img2.pcx -------------------------------------------------------------------------------- /data/vehicles/minelayer/img3.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/minelayer/img3.pcx -------------------------------------------------------------------------------- /data/vehicles/minelayer/img4.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/minelayer/img4.pcx -------------------------------------------------------------------------------- /data/vehicles/minelayer/img5.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/minelayer/img5.pcx -------------------------------------------------------------------------------- /data/vehicles/minelayer/img6.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/minelayer/img6.pcx -------------------------------------------------------------------------------- /data/vehicles/minelayer/img7.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/minelayer/img7.pcx -------------------------------------------------------------------------------- /data/vehicles/minelayer/info.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/minelayer/info.pcx -------------------------------------------------------------------------------- /data/vehicles/minelayer/shw0.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/minelayer/shw0.pcx -------------------------------------------------------------------------------- /data/vehicles/minelayer/shw1.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/minelayer/shw1.pcx -------------------------------------------------------------------------------- /data/vehicles/minelayer/shw2.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/minelayer/shw2.pcx -------------------------------------------------------------------------------- /data/vehicles/minelayer/shw3.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/minelayer/shw3.pcx -------------------------------------------------------------------------------- /data/vehicles/minelayer/shw4.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/minelayer/shw4.pcx -------------------------------------------------------------------------------- /data/vehicles/minelayer/shw5.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/minelayer/shw5.pcx -------------------------------------------------------------------------------- /data/vehicles/minelayer/shw6.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/minelayer/shw6.pcx -------------------------------------------------------------------------------- /data/vehicles/minelayer/shw7.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/minelayer/shw7.pcx -------------------------------------------------------------------------------- /data/vehicles/missel/img0.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/missel/img0.pcx -------------------------------------------------------------------------------- /data/vehicles/missel/img1.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/missel/img1.pcx -------------------------------------------------------------------------------- /data/vehicles/missel/img2.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/missel/img2.pcx -------------------------------------------------------------------------------- /data/vehicles/missel/img3.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/missel/img3.pcx -------------------------------------------------------------------------------- /data/vehicles/missel/img4.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/missel/img4.pcx -------------------------------------------------------------------------------- /data/vehicles/missel/img5.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/missel/img5.pcx -------------------------------------------------------------------------------- /data/vehicles/missel/img6.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/missel/img6.pcx -------------------------------------------------------------------------------- /data/vehicles/missel/img7.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/missel/img7.pcx -------------------------------------------------------------------------------- /data/vehicles/missel/info.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/missel/info.pcx -------------------------------------------------------------------------------- /data/vehicles/missel/shw0.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/missel/shw0.pcx -------------------------------------------------------------------------------- /data/vehicles/missel/shw1.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/missel/shw1.pcx -------------------------------------------------------------------------------- /data/vehicles/missel/shw2.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/missel/shw2.pcx -------------------------------------------------------------------------------- /data/vehicles/missel/shw3.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/missel/shw3.pcx -------------------------------------------------------------------------------- /data/vehicles/missel/shw4.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/missel/shw4.pcx -------------------------------------------------------------------------------- /data/vehicles/missel/shw5.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/missel/shw5.pcx -------------------------------------------------------------------------------- /data/vehicles/missel/shw6.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/missel/shw6.pcx -------------------------------------------------------------------------------- /data/vehicles/missel/shw7.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/missel/shw7.pcx -------------------------------------------------------------------------------- /data/vehicles/missel/store.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/missel/store.pcx -------------------------------------------------------------------------------- /data/vehicles/missel/video.flc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/missel/video.flc -------------------------------------------------------------------------------- /data/vehicles/mobile_aa/img0.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/mobile_aa/img0.pcx -------------------------------------------------------------------------------- /data/vehicles/mobile_aa/img1.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/mobile_aa/img1.pcx -------------------------------------------------------------------------------- /data/vehicles/mobile_aa/img2.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/mobile_aa/img2.pcx -------------------------------------------------------------------------------- /data/vehicles/mobile_aa/img3.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/mobile_aa/img3.pcx -------------------------------------------------------------------------------- /data/vehicles/mobile_aa/img4.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/mobile_aa/img4.pcx -------------------------------------------------------------------------------- /data/vehicles/mobile_aa/img5.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/mobile_aa/img5.pcx -------------------------------------------------------------------------------- /data/vehicles/mobile_aa/img6.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/mobile_aa/img6.pcx -------------------------------------------------------------------------------- /data/vehicles/mobile_aa/img7.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/mobile_aa/img7.pcx -------------------------------------------------------------------------------- /data/vehicles/mobile_aa/info.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/mobile_aa/info.pcx -------------------------------------------------------------------------------- /data/vehicles/mobile_aa/shw0.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/mobile_aa/shw0.pcx -------------------------------------------------------------------------------- /data/vehicles/mobile_aa/shw1.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/mobile_aa/shw1.pcx -------------------------------------------------------------------------------- /data/vehicles/mobile_aa/shw2.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/mobile_aa/shw2.pcx -------------------------------------------------------------------------------- /data/vehicles/mobile_aa/shw3.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/mobile_aa/shw3.pcx -------------------------------------------------------------------------------- /data/vehicles/mobile_aa/shw4.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/mobile_aa/shw4.pcx -------------------------------------------------------------------------------- /data/vehicles/mobile_aa/shw5.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/mobile_aa/shw5.pcx -------------------------------------------------------------------------------- /data/vehicles/mobile_aa/shw6.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/mobile_aa/shw6.pcx -------------------------------------------------------------------------------- /data/vehicles/mobile_aa/shw7.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/mobile_aa/shw7.pcx -------------------------------------------------------------------------------- /data/vehicles/pionier/build.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/pionier/build.pcx -------------------------------------------------------------------------------- /data/vehicles/pionier/img0.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/pionier/img0.pcx -------------------------------------------------------------------------------- /data/vehicles/pionier/img1.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/pionier/img1.pcx -------------------------------------------------------------------------------- /data/vehicles/pionier/img2.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/pionier/img2.pcx -------------------------------------------------------------------------------- /data/vehicles/pionier/img3.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/pionier/img3.pcx -------------------------------------------------------------------------------- /data/vehicles/pionier/img4.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/pionier/img4.pcx -------------------------------------------------------------------------------- /data/vehicles/pionier/img5.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/pionier/img5.pcx -------------------------------------------------------------------------------- /data/vehicles/pionier/img6.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/pionier/img6.pcx -------------------------------------------------------------------------------- /data/vehicles/pionier/img7.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/pionier/img7.pcx -------------------------------------------------------------------------------- /data/vehicles/pionier/info.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/pionier/info.pcx -------------------------------------------------------------------------------- /data/vehicles/pionier/shw0.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/pionier/shw0.pcx -------------------------------------------------------------------------------- /data/vehicles/pionier/shw1.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/pionier/shw1.pcx -------------------------------------------------------------------------------- /data/vehicles/pionier/shw2.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/pionier/shw2.pcx -------------------------------------------------------------------------------- /data/vehicles/pionier/shw3.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/pionier/shw3.pcx -------------------------------------------------------------------------------- /data/vehicles/pionier/shw4.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/pionier/shw4.pcx -------------------------------------------------------------------------------- /data/vehicles/pionier/shw5.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/pionier/shw5.pcx -------------------------------------------------------------------------------- /data/vehicles/pionier/shw6.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/pionier/shw6.pcx -------------------------------------------------------------------------------- /data/vehicles/pionier/shw7.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/pionier/shw7.pcx -------------------------------------------------------------------------------- /data/vehicles/pionier/store.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/pionier/store.pcx -------------------------------------------------------------------------------- /data/vehicles/pionier/video.flc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/pionier/video.flc -------------------------------------------------------------------------------- /data/vehicles/repair/img0.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/repair/img0.pcx -------------------------------------------------------------------------------- /data/vehicles/repair/img1.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/repair/img1.pcx -------------------------------------------------------------------------------- /data/vehicles/repair/img2.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/repair/img2.pcx -------------------------------------------------------------------------------- /data/vehicles/repair/img3.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/repair/img3.pcx -------------------------------------------------------------------------------- /data/vehicles/repair/img4.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/repair/img4.pcx -------------------------------------------------------------------------------- /data/vehicles/repair/img5.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/repair/img5.pcx -------------------------------------------------------------------------------- /data/vehicles/repair/img6.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/repair/img6.pcx -------------------------------------------------------------------------------- /data/vehicles/repair/img7.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/repair/img7.pcx -------------------------------------------------------------------------------- /data/vehicles/repair/info.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/repair/info.pcx -------------------------------------------------------------------------------- /data/vehicles/repair/shw0.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/repair/shw0.pcx -------------------------------------------------------------------------------- /data/vehicles/repair/shw1.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/repair/shw1.pcx -------------------------------------------------------------------------------- /data/vehicles/repair/shw2.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/repair/shw2.pcx -------------------------------------------------------------------------------- /data/vehicles/repair/shw3.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/repair/shw3.pcx -------------------------------------------------------------------------------- /data/vehicles/repair/shw4.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/repair/shw4.pcx -------------------------------------------------------------------------------- /data/vehicles/repair/shw5.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/repair/shw5.pcx -------------------------------------------------------------------------------- /data/vehicles/repair/shw6.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/repair/shw6.pcx -------------------------------------------------------------------------------- /data/vehicles/repair/shw7.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/repair/shw7.pcx -------------------------------------------------------------------------------- /data/vehicles/repair/store.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/repair/store.pcx -------------------------------------------------------------------------------- /data/vehicles/repair/video.flc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/repair/video.flc -------------------------------------------------------------------------------- /data/vehicles/scanner/img0.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/scanner/img0.pcx -------------------------------------------------------------------------------- /data/vehicles/scanner/img1.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/scanner/img1.pcx -------------------------------------------------------------------------------- /data/vehicles/scanner/img2.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/scanner/img2.pcx -------------------------------------------------------------------------------- /data/vehicles/scanner/img3.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/scanner/img3.pcx -------------------------------------------------------------------------------- /data/vehicles/scanner/img4.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/scanner/img4.pcx -------------------------------------------------------------------------------- /data/vehicles/scanner/img5.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/scanner/img5.pcx -------------------------------------------------------------------------------- /data/vehicles/scanner/img6.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/scanner/img6.pcx -------------------------------------------------------------------------------- /data/vehicles/scanner/img7.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/scanner/img7.pcx -------------------------------------------------------------------------------- /data/vehicles/scanner/info.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/scanner/info.pcx -------------------------------------------------------------------------------- /data/vehicles/scanner/shw0.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/scanner/shw0.pcx -------------------------------------------------------------------------------- /data/vehicles/scanner/shw1.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/scanner/shw1.pcx -------------------------------------------------------------------------------- /data/vehicles/scanner/shw2.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/scanner/shw2.pcx -------------------------------------------------------------------------------- /data/vehicles/scanner/shw3.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/scanner/shw3.pcx -------------------------------------------------------------------------------- /data/vehicles/scanner/shw4.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/scanner/shw4.pcx -------------------------------------------------------------------------------- /data/vehicles/scanner/shw5.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/scanner/shw5.pcx -------------------------------------------------------------------------------- /data/vehicles/scanner/shw6.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/scanner/shw6.pcx -------------------------------------------------------------------------------- /data/vehicles/scanner/shw7.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/scanner/shw7.pcx -------------------------------------------------------------------------------- /data/vehicles/scanner/store.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/scanner/store.pcx -------------------------------------------------------------------------------- /data/vehicles/scanner/video.flc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/scanner/video.flc -------------------------------------------------------------------------------- /data/vehicles/scout/img0.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/scout/img0.pcx -------------------------------------------------------------------------------- /data/vehicles/scout/img1.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/scout/img1.pcx -------------------------------------------------------------------------------- /data/vehicles/scout/img2.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/scout/img2.pcx -------------------------------------------------------------------------------- /data/vehicles/scout/img3.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/scout/img3.pcx -------------------------------------------------------------------------------- /data/vehicles/scout/img4.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/scout/img4.pcx -------------------------------------------------------------------------------- /data/vehicles/scout/img5.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/scout/img5.pcx -------------------------------------------------------------------------------- /data/vehicles/scout/img6.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/scout/img6.pcx -------------------------------------------------------------------------------- /data/vehicles/scout/img7.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/scout/img7.pcx -------------------------------------------------------------------------------- /data/vehicles/scout/info.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/scout/info.pcx -------------------------------------------------------------------------------- /data/vehicles/scout/shw0.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/scout/shw0.pcx -------------------------------------------------------------------------------- /data/vehicles/scout/shw1.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/scout/shw1.pcx -------------------------------------------------------------------------------- /data/vehicles/scout/shw2.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/scout/shw2.pcx -------------------------------------------------------------------------------- /data/vehicles/scout/shw3.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/scout/shw3.pcx -------------------------------------------------------------------------------- /data/vehicles/scout/shw4.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/scout/shw4.pcx -------------------------------------------------------------------------------- /data/vehicles/scout/shw5.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/scout/shw5.pcx -------------------------------------------------------------------------------- /data/vehicles/scout/shw6.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/scout/shw6.pcx -------------------------------------------------------------------------------- /data/vehicles/scout/shw7.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/scout/shw7.pcx -------------------------------------------------------------------------------- /data/vehicles/scout/store.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/scout/store.pcx -------------------------------------------------------------------------------- /data/vehicles/scout/video.flc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/scout/video.flc -------------------------------------------------------------------------------- /data/vehicles/sub/attack.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/sub/attack.ogg -------------------------------------------------------------------------------- /data/vehicles/sub/img0.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/sub/img0.pcx -------------------------------------------------------------------------------- /data/vehicles/sub/img1.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/sub/img1.pcx -------------------------------------------------------------------------------- /data/vehicles/sub/img2.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/sub/img2.pcx -------------------------------------------------------------------------------- /data/vehicles/sub/img3.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/sub/img3.pcx -------------------------------------------------------------------------------- /data/vehicles/sub/img4.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/sub/img4.pcx -------------------------------------------------------------------------------- /data/vehicles/sub/img5.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/sub/img5.pcx -------------------------------------------------------------------------------- /data/vehicles/sub/img6.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/sub/img6.pcx -------------------------------------------------------------------------------- /data/vehicles/sub/img7.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/sub/img7.pcx -------------------------------------------------------------------------------- /data/vehicles/sub/info.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/sub/info.pcx -------------------------------------------------------------------------------- /data/vehicles/sub/shw0.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/sub/shw0.pcx -------------------------------------------------------------------------------- /data/vehicles/sub/shw1.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/sub/shw1.pcx -------------------------------------------------------------------------------- /data/vehicles/sub/shw2.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/sub/shw2.pcx -------------------------------------------------------------------------------- /data/vehicles/sub/shw3.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/sub/shw3.pcx -------------------------------------------------------------------------------- /data/vehicles/sub/shw4.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/sub/shw4.pcx -------------------------------------------------------------------------------- /data/vehicles/sub/shw5.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/sub/shw5.pcx -------------------------------------------------------------------------------- /data/vehicles/sub/shw6.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/sub/shw6.pcx -------------------------------------------------------------------------------- /data/vehicles/sub/shw7.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/sub/shw7.pcx -------------------------------------------------------------------------------- /data/vehicles/sub/stop_water.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/sub/stop_water.ogg -------------------------------------------------------------------------------- /data/vehicles/sub/store.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/sub/store.pcx -------------------------------------------------------------------------------- /data/vehicles/sub/video.flc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/sub/video.flc -------------------------------------------------------------------------------- /data/vehicles/sub/wait_water.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/sub/wait_water.ogg -------------------------------------------------------------------------------- /data/vehicles/surveyor/drive.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/surveyor/drive.ogg -------------------------------------------------------------------------------- /data/vehicles/surveyor/img0.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/surveyor/img0.pcx -------------------------------------------------------------------------------- /data/vehicles/surveyor/img1.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/surveyor/img1.pcx -------------------------------------------------------------------------------- /data/vehicles/surveyor/img2.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/surveyor/img2.pcx -------------------------------------------------------------------------------- /data/vehicles/surveyor/img3.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/surveyor/img3.pcx -------------------------------------------------------------------------------- /data/vehicles/surveyor/img4.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/surveyor/img4.pcx -------------------------------------------------------------------------------- /data/vehicles/surveyor/img5.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/surveyor/img5.pcx -------------------------------------------------------------------------------- /data/vehicles/surveyor/img6.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/surveyor/img6.pcx -------------------------------------------------------------------------------- /data/vehicles/surveyor/img7.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/surveyor/img7.pcx -------------------------------------------------------------------------------- /data/vehicles/surveyor/info.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/surveyor/info.pcx -------------------------------------------------------------------------------- /data/vehicles/surveyor/shw0.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/surveyor/shw0.pcx -------------------------------------------------------------------------------- /data/vehicles/surveyor/shw1.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/surveyor/shw1.pcx -------------------------------------------------------------------------------- /data/vehicles/surveyor/shw2.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/surveyor/shw2.pcx -------------------------------------------------------------------------------- /data/vehicles/surveyor/shw3.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/surveyor/shw3.pcx -------------------------------------------------------------------------------- /data/vehicles/surveyor/shw4.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/surveyor/shw4.pcx -------------------------------------------------------------------------------- /data/vehicles/surveyor/shw5.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/surveyor/shw5.pcx -------------------------------------------------------------------------------- /data/vehicles/surveyor/shw6.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/surveyor/shw6.pcx -------------------------------------------------------------------------------- /data/vehicles/surveyor/shw7.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/surveyor/shw7.pcx -------------------------------------------------------------------------------- /data/vehicles/surveyor/start.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/surveyor/start.ogg -------------------------------------------------------------------------------- /data/vehicles/surveyor/stop.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/surveyor/stop.ogg -------------------------------------------------------------------------------- /data/vehicles/surveyor/store.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/surveyor/store.pcx -------------------------------------------------------------------------------- /data/vehicles/surveyor/video.flc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/surveyor/video.flc -------------------------------------------------------------------------------- /data/vehicles/surveyor/wait.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/surveyor/wait.ogg -------------------------------------------------------------------------------- /data/vehicles/tank/img0.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/tank/img0.pcx -------------------------------------------------------------------------------- /data/vehicles/tank/img1.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/tank/img1.pcx -------------------------------------------------------------------------------- /data/vehicles/tank/img2.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/tank/img2.pcx -------------------------------------------------------------------------------- /data/vehicles/tank/img3.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/tank/img3.pcx -------------------------------------------------------------------------------- /data/vehicles/tank/img4.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/tank/img4.pcx -------------------------------------------------------------------------------- /data/vehicles/tank/img5.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/tank/img5.pcx -------------------------------------------------------------------------------- /data/vehicles/tank/img6.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/tank/img6.pcx -------------------------------------------------------------------------------- /data/vehicles/tank/img7.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/tank/img7.pcx -------------------------------------------------------------------------------- /data/vehicles/tank/info.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/tank/info.pcx -------------------------------------------------------------------------------- /data/vehicles/tank/shw0.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/tank/shw0.pcx -------------------------------------------------------------------------------- /data/vehicles/tank/shw1.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/tank/shw1.pcx -------------------------------------------------------------------------------- /data/vehicles/tank/shw2.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/tank/shw2.pcx -------------------------------------------------------------------------------- /data/vehicles/tank/shw3.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/tank/shw3.pcx -------------------------------------------------------------------------------- /data/vehicles/tank/shw4.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/tank/shw4.pcx -------------------------------------------------------------------------------- /data/vehicles/tank/shw5.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/tank/shw5.pcx -------------------------------------------------------------------------------- /data/vehicles/tank/shw6.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/tank/shw6.pcx -------------------------------------------------------------------------------- /data/vehicles/tank/shw7.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/tank/shw7.pcx -------------------------------------------------------------------------------- /data/vehicles/tank/store.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/tank/store.pcx -------------------------------------------------------------------------------- /data/vehicles/tank/video.flc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/tank/video.flc -------------------------------------------------------------------------------- /data/vehicles/trans_oil/img0.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/trans_oil/img0.pcx -------------------------------------------------------------------------------- /data/vehicles/trans_oil/img1.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/trans_oil/img1.pcx -------------------------------------------------------------------------------- /data/vehicles/trans_oil/img2.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/trans_oil/img2.pcx -------------------------------------------------------------------------------- /data/vehicles/trans_oil/img3.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/trans_oil/img3.pcx -------------------------------------------------------------------------------- /data/vehicles/trans_oil/img4.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/trans_oil/img4.pcx -------------------------------------------------------------------------------- /data/vehicles/trans_oil/img5.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/trans_oil/img5.pcx -------------------------------------------------------------------------------- /data/vehicles/trans_oil/img6.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/trans_oil/img6.pcx -------------------------------------------------------------------------------- /data/vehicles/trans_oil/img7.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/trans_oil/img7.pcx -------------------------------------------------------------------------------- /data/vehicles/trans_oil/info.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/trans_oil/info.pcx -------------------------------------------------------------------------------- /data/vehicles/trans_oil/shw0.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/trans_oil/shw0.pcx -------------------------------------------------------------------------------- /data/vehicles/trans_oil/shw1.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/trans_oil/shw1.pcx -------------------------------------------------------------------------------- /data/vehicles/trans_oil/shw2.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/trans_oil/shw2.pcx -------------------------------------------------------------------------------- /data/vehicles/trans_oil/shw3.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/trans_oil/shw3.pcx -------------------------------------------------------------------------------- /data/vehicles/trans_oil/shw4.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/trans_oil/shw4.pcx -------------------------------------------------------------------------------- /data/vehicles/trans_oil/shw5.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/trans_oil/shw5.pcx -------------------------------------------------------------------------------- /data/vehicles/trans_oil/shw6.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/trans_oil/shw6.pcx -------------------------------------------------------------------------------- /data/vehicles/trans_oil/shw7.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/vehicles/trans_oil/shw7.pcx -------------------------------------------------------------------------------- /data/voices/.empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/data/voices/.empty -------------------------------------------------------------------------------- /mk/mac/Resources/maxr.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/mk/mac/Resources/maxr.icns -------------------------------------------------------------------------------- /mk/win32/installer/left.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/mk/win32/installer/left.bmp -------------------------------------------------------------------------------- /mk/win32/installer/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/mk/win32/installer/license.txt -------------------------------------------------------------------------------- /mk/win32/installer/maxr.json: -------------------------------------------------------------------------------- 1 | { 2 | "global": { 3 | "language": "en" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /mk/win32/installer/top_small.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/mk/win32/installer/top_small.bmp -------------------------------------------------------------------------------- /resinstaller/AUTHORS: -------------------------------------------------------------------------------- 1 | Eiko Oltmanns 2 | -------------------------------------------------------------------------------- /resinstaller/src/pcx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxr-dot-org/maxr/57b7c92b3d3e02b01c79ad33e5337d166f552c74/resinstaller/src/pcx.cpp -------------------------------------------------------------------------------- /src/3rd/.clang-format: -------------------------------------------------------------------------------- 1 | DisableFormat: true 2 | -------------------------------------------------------------------------------- /src/autoversion.h.in: -------------------------------------------------------------------------------- 1 | #define GIT_DESC "${GIT_DESC}" 2 | -------------------------------------------------------------------------------- /submodules/.clang-format: -------------------------------------------------------------------------------- 1 | DisableFormat: true 2 | --------------------------------------------------------------------------------