From: hgn Date: Thu, 13 Jun 2024 08:48:44 +0000 (+0100) Subject: move source content folders X-Git-Url: https://harrygodden.com/git/?a=commitdiff_plain;h=238a3a4ef19bb137e2a878ee38f99d253eddb51c;p=carveJwlIkooP6JGAAIwe30JlM.git move source content folders --- diff --git a/boards_src/skaterift_fract/addon.inf b/boards_src/skaterift_fract/addon.inf deleted file mode 100644 index 3c85c64..0000000 Binary files a/boards_src/skaterift_fract/addon.inf and /dev/null differ diff --git a/boards_src/skaterift_fract/board.mdl b/boards_src/skaterift_fract/board.mdl deleted file mode 100644 index cd24ab9..0000000 Binary files a/boards_src/skaterift_fract/board.mdl and /dev/null differ diff --git a/boards_src/skaterift_licco/addon.inf b/boards_src/skaterift_licco/addon.inf deleted file mode 100644 index 0cb8f45..0000000 Binary files a/boards_src/skaterift_licco/addon.inf and /dev/null differ diff --git a/boards_src/skaterift_licco/board.mdl b/boards_src/skaterift_licco/board.mdl deleted file mode 100644 index 14c6f7a..0000000 Binary files a/boards_src/skaterift_licco/board.mdl and /dev/null differ diff --git a/boards_src/skaterift_long/addon.inf b/boards_src/skaterift_long/addon.inf deleted file mode 100644 index daf6b76..0000000 Binary files a/boards_src/skaterift_long/addon.inf and /dev/null differ diff --git a/boards_src/skaterift_long/board.mdl b/boards_src/skaterift_long/board.mdl deleted file mode 100644 index 81468f9..0000000 Binary files a/boards_src/skaterift_long/board.mdl and /dev/null differ diff --git a/boards_src/skaterift_shark/addon.inf b/boards_src/skaterift_shark/addon.inf deleted file mode 100644 index 7f8c3fc..0000000 Binary files a/boards_src/skaterift_shark/addon.inf and /dev/null differ diff --git a/boards_src/skaterift_shark/board.mdl b/boards_src/skaterift_shark/board.mdl deleted file mode 100644 index 9213919..0000000 Binary files a/boards_src/skaterift_shark/board.mdl and /dev/null differ diff --git a/boards_src/skaterift_spiral/addon.inf b/boards_src/skaterift_spiral/addon.inf deleted file mode 100644 index 6cc3ef5..0000000 Binary files a/boards_src/skaterift_spiral/addon.inf and /dev/null differ diff --git a/boards_src/skaterift_spiral/board.mdl b/boards_src/skaterift_spiral/board.mdl deleted file mode 100644 index 28459a8..0000000 Binary files a/boards_src/skaterift_spiral/board.mdl and /dev/null differ diff --git a/boards_src/skaterift_striped/addon.inf b/boards_src/skaterift_striped/addon.inf deleted file mode 100644 index 2c2ba4e..0000000 Binary files a/boards_src/skaterift_striped/addon.inf and /dev/null differ diff --git a/boards_src/skaterift_striped/board.mdl b/boards_src/skaterift_striped/board.mdl deleted file mode 100644 index 3283702..0000000 Binary files a/boards_src/skaterift_striped/board.mdl and /dev/null differ diff --git a/build.c b/build.c index 4bcff95..f1bf42d 100644 --- a/build.c +++ b/build.c @@ -55,38 +55,38 @@ void build_game_metadata(void) vg_info( "Building game metadata\n" ); write_generic_addon_inf( k_addon_type_board, "Longboard", "board.mdl", - "boards_src/skaterift_long/addon.inf"); + "content_skaterift/boards/skaterift_long/addon.inf"); write_generic_addon_inf( k_addon_type_board, "Fractal", "board.mdl", - "boards_src/skaterift_fract/addon.inf"); + "content_skaterift/boards/skaterift_fract/addon.inf"); write_generic_addon_inf( k_addon_type_board, "Striped", "board.mdl", - "boards_src/skaterift_striped/addon.inf"); + "content_skaterift/boards/skaterift_striped/addon.inf"); write_generic_addon_inf( k_addon_type_board, "Licco", "board.mdl", - "boards_src/skaterift_licco/addon.inf"); + "content_skaterift/boards/skaterift_licco/addon.inf"); write_generic_addon_inf( k_addon_type_board, "Hypno", "board.mdl", - "boards_src/skaterift_spiral/addon.inf"); + "content_skaterift/boards/skaterift_spiral/addon.inf"); write_generic_addon_inf( k_addon_type_board, "Shark", "board.mdl", - "boards_src/skaterift_shark/addon.inf"); + "content_skaterift/boards/skaterift_shark/addon.inf"); write_generic_addon_inf( k_addon_type_player, "De'folde", "ch_new.mdl", - "playermodels_src/skaterift_new/addon.inf" ); + "content_skaterift/playermodels/skaterift_new/addon.inf" ); write_generic_addon_inf( k_addon_type_player, "Jordan", "ch_jordan.mdl", - "playermodels_src/skaterift_jordan/addon.inf" ); + "content_skaterift/playermodels/skaterift_jordan/addon.inf" ); write_generic_addon_inf( k_addon_type_player, "Outlaw", "ch_outlaw.mdl", - "playermodels_src/skaterift_outlaw/addon.inf" ); + "content_skaterift/playermodels/skaterift_outlaw/addon.inf" ); write_generic_addon_inf( k_addon_type_player, "Chip", "ch_chip.mdl", - "playermodels_src/skaterift_chip/addon.inf" ); + "content_skaterift/playermodels/skaterift_chip/addon.inf" ); write_generic_addon_inf( k_addon_type_player, "Aaron", "ch_aaron.mdl", - "playermodels_src/skaterift_aaron/addon.inf" ); + "content_skaterift/playermodels/skaterift_aaron/addon.inf" ); } #define _S( NAME, VS, FS ) \ @@ -139,12 +139,12 @@ void build_shaders(void){ void build_game_content( struct vg_project *proj ) { - vg_symlink( proj, "textures_src", "textures" ); - vg_symlink( proj, "models_src", "models" ); - vg_symlink( proj, "boards_src", "boards" ); - vg_symlink( proj, "maps_src", "maps" ); - vg_symlink( proj, "sound_src", "sound" ); - vg_symlink( proj, "playermodels_src", "playermodels" ); + vg_symlink( proj, "content_skaterift/textures", "textures" ); + vg_symlink( proj, "content_skaterift/models", "models" ); + vg_symlink( proj, "content_skaterift/boards", "boards" ); + vg_symlink( proj, "content_skaterift/maps", "maps" ); + vg_symlink( proj, "content_skaterift/sound", "sound" ); + vg_symlink( proj, "content_skaterift/playermodels", "playermodels" ); vg_syscall( "mkdir -p bin/%s/cfg", proj->uid.buffer ); vg_syscall( "mkdir -p bin/%s/savedata", proj->uid.buffer ); vg_syscall( "mkdir -p bin/%s/tools", proj->uid.buffer ); diff --git a/content_skaterift/boards/skaterift_fract/addon.inf b/content_skaterift/boards/skaterift_fract/addon.inf new file mode 100644 index 0000000..3c85c64 Binary files /dev/null and b/content_skaterift/boards/skaterift_fract/addon.inf differ diff --git a/content_skaterift/boards/skaterift_fract/board.mdl b/content_skaterift/boards/skaterift_fract/board.mdl new file mode 100644 index 0000000..cd24ab9 Binary files /dev/null and b/content_skaterift/boards/skaterift_fract/board.mdl differ diff --git a/content_skaterift/boards/skaterift_licco/addon.inf b/content_skaterift/boards/skaterift_licco/addon.inf new file mode 100644 index 0000000..0cb8f45 Binary files /dev/null and b/content_skaterift/boards/skaterift_licco/addon.inf differ diff --git a/content_skaterift/boards/skaterift_licco/board.mdl b/content_skaterift/boards/skaterift_licco/board.mdl new file mode 100644 index 0000000..14c6f7a Binary files /dev/null and b/content_skaterift/boards/skaterift_licco/board.mdl differ diff --git a/content_skaterift/boards/skaterift_long/addon.inf b/content_skaterift/boards/skaterift_long/addon.inf new file mode 100644 index 0000000..daf6b76 Binary files /dev/null and b/content_skaterift/boards/skaterift_long/addon.inf differ diff --git a/content_skaterift/boards/skaterift_long/board.mdl b/content_skaterift/boards/skaterift_long/board.mdl new file mode 100644 index 0000000..81468f9 Binary files /dev/null and b/content_skaterift/boards/skaterift_long/board.mdl differ diff --git a/content_skaterift/boards/skaterift_shark/addon.inf b/content_skaterift/boards/skaterift_shark/addon.inf new file mode 100644 index 0000000..7f8c3fc Binary files /dev/null and b/content_skaterift/boards/skaterift_shark/addon.inf differ diff --git a/content_skaterift/boards/skaterift_shark/board.mdl b/content_skaterift/boards/skaterift_shark/board.mdl new file mode 100644 index 0000000..9213919 Binary files /dev/null and b/content_skaterift/boards/skaterift_shark/board.mdl differ diff --git a/content_skaterift/boards/skaterift_spiral/addon.inf b/content_skaterift/boards/skaterift_spiral/addon.inf new file mode 100644 index 0000000..6cc3ef5 Binary files /dev/null and b/content_skaterift/boards/skaterift_spiral/addon.inf differ diff --git a/content_skaterift/boards/skaterift_spiral/board.mdl b/content_skaterift/boards/skaterift_spiral/board.mdl new file mode 100644 index 0000000..28459a8 Binary files /dev/null and b/content_skaterift/boards/skaterift_spiral/board.mdl differ diff --git a/content_skaterift/boards/skaterift_striped/addon.inf b/content_skaterift/boards/skaterift_striped/addon.inf new file mode 100644 index 0000000..2c2ba4e Binary files /dev/null and b/content_skaterift/boards/skaterift_striped/addon.inf differ diff --git a/content_skaterift/boards/skaterift_striped/board.mdl b/content_skaterift/boards/skaterift_striped/board.mdl new file mode 100644 index 0000000..3283702 Binary files /dev/null and b/content_skaterift/boards/skaterift_striped/board.mdl differ diff --git a/content_skaterift/maps/dev_flatworld/main.mdl b/content_skaterift/maps/dev_flatworld/main.mdl new file mode 100644 index 0000000..f9c326c Binary files /dev/null and b/content_skaterift/maps/dev_flatworld/main.mdl differ diff --git a/content_skaterift/maps/dev_hub/main.mdl b/content_skaterift/maps/dev_hub/main.mdl new file mode 100644 index 0000000..28304f5 Binary files /dev/null and b/content_skaterift/maps/dev_hub/main.mdl differ diff --git a/content_skaterift/maps/dev_tutorial/main.mdl b/content_skaterift/maps/dev_tutorial/main.mdl new file mode 100644 index 0000000..9a24db8 Binary files /dev/null and b/content_skaterift/maps/dev_tutorial/main.mdl differ diff --git a/content_skaterift/maps/mp_line1/main.mdl b/content_skaterift/maps/mp_line1/main.mdl new file mode 100644 index 0000000..047f8a8 Binary files /dev/null and b/content_skaterift/maps/mp_line1/main.mdl differ diff --git a/content_skaterift/maps/mp_mtzero/main.mdl b/content_skaterift/maps/mp_mtzero/main.mdl new file mode 100644 index 0000000..87d11a4 Binary files /dev/null and b/content_skaterift/maps/mp_mtzero/main.mdl differ diff --git a/content_skaterift/maps/mp_spawn/main.mdl b/content_skaterift/maps/mp_spawn/main.mdl new file mode 100644 index 0000000..74fb300 Binary files /dev/null and b/content_skaterift/maps/mp_spawn/main.mdl differ diff --git a/content_skaterift/models/board_none.mdl b/content_skaterift/models/board_none.mdl new file mode 100644 index 0000000..b644f1c Binary files /dev/null and b/content_skaterift/models/board_none.mdl differ diff --git a/content_skaterift/models/ch_none.mdl b/content_skaterift/models/ch_none.mdl new file mode 100644 index 0000000..760fda4 Binary files /dev/null and b/content_skaterift/models/ch_none.mdl differ diff --git a/content_skaterift/models/glider.mdl b/content_skaterift/models/glider.mdl new file mode 100644 index 0000000..0a2ca3c Binary files /dev/null and b/content_skaterift/models/glider.mdl differ diff --git a/content_skaterift/models/gumpa.mdl b/content_skaterift/models/gumpa.mdl new file mode 100644 index 0000000..d0ccc28 Binary files /dev/null and b/content_skaterift/models/gumpa.mdl differ diff --git a/content_skaterift/models/rs_buggy.mdl b/content_skaterift/models/rs_buggy.mdl new file mode 100644 index 0000000..c814154 Binary files /dev/null and b/content_skaterift/models/rs_buggy.mdl differ diff --git a/content_skaterift/models/rs_font.mdl b/content_skaterift/models/rs_font.mdl new file mode 100644 index 0000000..7d2d808 Binary files /dev/null and b/content_skaterift/models/rs_font.mdl differ diff --git a/content_skaterift/models/rs_gate.mdl b/content_skaterift/models/rs_gate.mdl new file mode 100644 index 0000000..1cae7c1 Binary files /dev/null and b/content_skaterift/models/rs_gate.mdl differ diff --git a/content_skaterift/models/rs_icons.mdl b/content_skaterift/models/rs_icons.mdl new file mode 100644 index 0000000..4d303dd Binary files /dev/null and b/content_skaterift/models/rs_icons.mdl differ diff --git a/content_skaterift/models/rs_menu.mdl b/content_skaterift/models/rs_menu.mdl new file mode 100644 index 0000000..fe41c20 Binary files /dev/null and b/content_skaterift/models/rs_menu.mdl differ diff --git a/content_skaterift/models/rs_overlay.mdl b/content_skaterift/models/rs_overlay.mdl new file mode 100644 index 0000000..96c6a96 Binary files /dev/null and b/content_skaterift/models/rs_overlay.mdl differ diff --git a/content_skaterift/models/rs_portal.mdl b/content_skaterift/models/rs_portal.mdl new file mode 100644 index 0000000..73fd2f2 Binary files /dev/null and b/content_skaterift/models/rs_portal.mdl differ diff --git a/content_skaterift/models/rs_scoretext.mdl b/content_skaterift/models/rs_scoretext.mdl new file mode 100644 index 0000000..5731170 Binary files /dev/null and b/content_skaterift/models/rs_scoretext.mdl differ diff --git a/content_skaterift/models/rs_skydome.mdl b/content_skaterift/models/rs_skydome.mdl new file mode 100644 index 0000000..53980b1 Binary files /dev/null and b/content_skaterift/models/rs_skydome.mdl differ diff --git a/content_skaterift/models/slowmos.mdl b/content_skaterift/models/slowmos.mdl new file mode 100644 index 0000000..90d508f Binary files /dev/null and b/content_skaterift/models/slowmos.mdl differ diff --git a/content_skaterift/models/volc_flight.mdl b/content_skaterift/models/volc_flight.mdl new file mode 100644 index 0000000..02a7c78 Binary files /dev/null and b/content_skaterift/models/volc_flight.mdl differ diff --git a/content_skaterift/playermodels/skaterift_aaron/addon.inf b/content_skaterift/playermodels/skaterift_aaron/addon.inf new file mode 100644 index 0000000..f357ede Binary files /dev/null and b/content_skaterift/playermodels/skaterift_aaron/addon.inf differ diff --git a/content_skaterift/playermodels/skaterift_aaron/ch_aaron.mdl b/content_skaterift/playermodels/skaterift_aaron/ch_aaron.mdl new file mode 100644 index 0000000..808d496 Binary files /dev/null and b/content_skaterift/playermodels/skaterift_aaron/ch_aaron.mdl differ diff --git a/content_skaterift/playermodels/skaterift_chip/addon.inf b/content_skaterift/playermodels/skaterift_chip/addon.inf new file mode 100644 index 0000000..3ad4bde Binary files /dev/null and b/content_skaterift/playermodels/skaterift_chip/addon.inf differ diff --git a/content_skaterift/playermodels/skaterift_chip/ch_chip.mdl b/content_skaterift/playermodels/skaterift_chip/ch_chip.mdl new file mode 100644 index 0000000..92d3153 Binary files /dev/null and b/content_skaterift/playermodels/skaterift_chip/ch_chip.mdl differ diff --git a/content_skaterift/playermodels/skaterift_ela/ch_ela.mdl b/content_skaterift/playermodels/skaterift_ela/ch_ela.mdl new file mode 100644 index 0000000..0d165c0 Binary files /dev/null and b/content_skaterift/playermodels/skaterift_ela/ch_ela.mdl differ diff --git a/content_skaterift/playermodels/skaterift_j/ch_j.mdl b/content_skaterift/playermodels/skaterift_j/ch_j.mdl new file mode 100644 index 0000000..876bcd7 Binary files /dev/null and b/content_skaterift/playermodels/skaterift_j/ch_j.mdl differ diff --git a/content_skaterift/playermodels/skaterift_john/ch_john.mdl b/content_skaterift/playermodels/skaterift_john/ch_john.mdl new file mode 100644 index 0000000..f5f3239 Binary files /dev/null and b/content_skaterift/playermodels/skaterift_john/ch_john.mdl differ diff --git a/content_skaterift/playermodels/skaterift_jordan/addon.inf b/content_skaterift/playermodels/skaterift_jordan/addon.inf new file mode 100644 index 0000000..513da41 Binary files /dev/null and b/content_skaterift/playermodels/skaterift_jordan/addon.inf differ diff --git a/content_skaterift/playermodels/skaterift_jordan/ch_jordan.mdl b/content_skaterift/playermodels/skaterift_jordan/ch_jordan.mdl new file mode 100644 index 0000000..c3d26f1 Binary files /dev/null and b/content_skaterift/playermodels/skaterift_jordan/ch_jordan.mdl differ diff --git a/content_skaterift/playermodels/skaterift_new/addon.inf b/content_skaterift/playermodels/skaterift_new/addon.inf new file mode 100644 index 0000000..9a932a5 Binary files /dev/null and b/content_skaterift/playermodels/skaterift_new/addon.inf differ diff --git a/content_skaterift/playermodels/skaterift_new/ch_new.mdl b/content_skaterift/playermodels/skaterift_new/ch_new.mdl new file mode 100644 index 0000000..1a43925 Binary files /dev/null and b/content_skaterift/playermodels/skaterift_new/ch_new.mdl differ diff --git a/content_skaterift/playermodels/skaterift_outlaw/addon.inf b/content_skaterift/playermodels/skaterift_outlaw/addon.inf new file mode 100644 index 0000000..49e9bec Binary files /dev/null and b/content_skaterift/playermodels/skaterift_outlaw/addon.inf differ diff --git a/content_skaterift/playermodels/skaterift_outlaw/ch_outlaw.mdl b/content_skaterift/playermodels/skaterift_outlaw/ch_outlaw.mdl new file mode 100644 index 0000000..c27a6e9 Binary files /dev/null and b/content_skaterift/playermodels/skaterift_outlaw/ch_outlaw.mdl differ diff --git a/content_skaterift/sound/bird0.ogg b/content_skaterift/sound/bird0.ogg new file mode 100644 index 0000000..adb1f03 Binary files /dev/null and b/content_skaterift/sound/bird0.ogg differ diff --git a/content_skaterift/sound/bird1.ogg b/content_skaterift/sound/bird1.ogg new file mode 100644 index 0000000..077fd78 Binary files /dev/null and b/content_skaterift/sound/bird1.ogg differ diff --git a/content_skaterift/sound/bird2.ogg b/content_skaterift/sound/bird2.ogg new file mode 100644 index 0000000..3389374 Binary files /dev/null and b/content_skaterift/sound/bird2.ogg differ diff --git a/content_skaterift/sound/ding.ogg b/content_skaterift/sound/ding.ogg new file mode 100644 index 0000000..904467d Binary files /dev/null and b/content_skaterift/sound/ding.ogg differ diff --git a/content_skaterift/sound/docks_generic.ogg b/content_skaterift/sound/docks_generic.ogg new file mode 100644 index 0000000..526f213 Binary files /dev/null and b/content_skaterift/sound/docks_generic.ogg differ diff --git a/content_skaterift/sound/field_generic.ogg b/content_skaterift/sound/field_generic.ogg new file mode 100644 index 0000000..79b02ab Binary files /dev/null and b/content_skaterift/sound/field_generic.ogg differ diff --git a/content_skaterift/sound/garden_generic.ogg b/content_skaterift/sound/garden_generic.ogg new file mode 100644 index 0000000..efe5871 Binary files /dev/null and b/content_skaterift/sound/garden_generic.ogg differ diff --git a/content_skaterift/sound/gate_ambient.ogg b/content_skaterift/sound/gate_ambient.ogg new file mode 100644 index 0000000..5dfa781 Binary files /dev/null and b/content_skaterift/sound/gate_ambient.ogg differ diff --git a/content_skaterift/sound/gate_lap.ogg b/content_skaterift/sound/gate_lap.ogg new file mode 100644 index 0000000..81a0930 Binary files /dev/null and b/content_skaterift/sound/gate_lap.ogg differ diff --git a/content_skaterift/sound/gate_pass.ogg b/content_skaterift/sound/gate_pass.ogg new file mode 100644 index 0000000..1201d4e Binary files /dev/null and b/content_skaterift/sound/gate_pass.ogg differ diff --git a/content_skaterift/sound/grass0.ogg b/content_skaterift/sound/grass0.ogg new file mode 100644 index 0000000..a6f0d83 Binary files /dev/null and b/content_skaterift/sound/grass0.ogg differ diff --git a/content_skaterift/sound/grass1.ogg b/content_skaterift/sound/grass1.ogg new file mode 100644 index 0000000..7768c65 Binary files /dev/null and b/content_skaterift/sound/grass1.ogg differ diff --git a/content_skaterift/sound/grass2.ogg b/content_skaterift/sound/grass2.ogg new file mode 100644 index 0000000..a05ea59 Binary files /dev/null and b/content_skaterift/sound/grass2.ogg differ diff --git a/content_skaterift/sound/grass3.ogg b/content_skaterift/sound/grass3.ogg new file mode 100644 index 0000000..038fe8a Binary files /dev/null and b/content_skaterift/sound/grass3.ogg differ diff --git a/content_skaterift/sound/grind_enter.ogg b/content_skaterift/sound/grind_enter.ogg new file mode 100644 index 0000000..f2c0e62 Binary files /dev/null and b/content_skaterift/sound/grind_enter.ogg differ diff --git a/content_skaterift/sound/grind_exit.ogg b/content_skaterift/sound/grind_exit.ogg new file mode 100644 index 0000000..fa28116 Binary files /dev/null and b/content_skaterift/sound/grind_exit.ogg differ diff --git a/content_skaterift/sound/grind_loop.ogg b/content_skaterift/sound/grind_loop.ogg new file mode 100644 index 0000000..339645f Binary files /dev/null and b/content_skaterift/sound/grind_loop.ogg differ diff --git a/content_skaterift/sound/grobplab.ogg b/content_skaterift/sound/grobplab.ogg new file mode 100644 index 0000000..32ce5b2 Binary files /dev/null and b/content_skaterift/sound/grobplab.ogg differ diff --git a/content_skaterift/sound/gumpa-theme.ogg b/content_skaterift/sound/gumpa-theme.ogg new file mode 100644 index 0000000..60bdf82 Binary files /dev/null and b/content_skaterift/sound/gumpa-theme.ogg differ diff --git a/content_skaterift/sound/hit0.ogg b/content_skaterift/sound/hit0.ogg new file mode 100644 index 0000000..6627558 Binary files /dev/null and b/content_skaterift/sound/hit0.ogg differ diff --git a/content_skaterift/sound/hit1.ogg b/content_skaterift/sound/hit1.ogg new file mode 100644 index 0000000..d019f69 Binary files /dev/null and b/content_skaterift/sound/hit1.ogg differ diff --git a/content_skaterift/sound/hit2.ogg b/content_skaterift/sound/hit2.ogg new file mode 100644 index 0000000..c9593cc Binary files /dev/null and b/content_skaterift/sound/hit2.ogg differ diff --git a/content_skaterift/sound/hit3.ogg b/content_skaterift/sound/hit3.ogg new file mode 100644 index 0000000..ce49ae1 Binary files /dev/null and b/content_skaterift/sound/hit3.ogg differ diff --git a/content_skaterift/sound/hit4.ogg b/content_skaterift/sound/hit4.ogg new file mode 100644 index 0000000..b793d19 Binary files /dev/null and b/content_skaterift/sound/hit4.ogg differ diff --git a/content_skaterift/sound/jump0.ogg b/content_skaterift/sound/jump0.ogg new file mode 100644 index 0000000..6dfc541 Binary files /dev/null and b/content_skaterift/sound/jump0.ogg differ diff --git a/content_skaterift/sound/jump1.ogg b/content_skaterift/sound/jump1.ogg new file mode 100644 index 0000000..fac3165 Binary files /dev/null and b/content_skaterift/sound/jump1.ogg differ diff --git a/content_skaterift/sound/jump2.ogg b/content_skaterift/sound/jump2.ogg new file mode 100644 index 0000000..cb9f59f Binary files /dev/null and b/content_skaterift/sound/jump2.ogg differ diff --git a/content_skaterift/sound/jump3.ogg b/content_skaterift/sound/jump3.ogg new file mode 100644 index 0000000..0380bf5 Binary files /dev/null and b/content_skaterift/sound/jump3.ogg differ diff --git a/content_skaterift/sound/land0.ogg b/content_skaterift/sound/land0.ogg new file mode 100644 index 0000000..6fafaf4 Binary files /dev/null and b/content_skaterift/sound/land0.ogg differ diff --git a/content_skaterift/sound/land1.ogg b/content_skaterift/sound/land1.ogg new file mode 100644 index 0000000..b28b3f3 Binary files /dev/null and b/content_skaterift/sound/land1.ogg differ diff --git a/content_skaterift/sound/land2.ogg b/content_skaterift/sound/land2.ogg new file mode 100644 index 0000000..17d1949 Binary files /dev/null and b/content_skaterift/sound/land2.ogg differ diff --git a/content_skaterift/sound/landsk0.ogg b/content_skaterift/sound/landsk0.ogg new file mode 100644 index 0000000..6de28b5 Binary files /dev/null and b/content_skaterift/sound/landsk0.ogg differ diff --git a/content_skaterift/sound/landsk1.ogg b/content_skaterift/sound/landsk1.ogg new file mode 100644 index 0000000..136b512 Binary files /dev/null and b/content_skaterift/sound/landsk1.ogg differ diff --git a/content_skaterift/sound/leaves0.ogg b/content_skaterift/sound/leaves0.ogg new file mode 100644 index 0000000..3af6c5f Binary files /dev/null and b/content_skaterift/sound/leaves0.ogg differ diff --git a/content_skaterift/sound/leaves1.ogg b/content_skaterift/sound/leaves1.ogg new file mode 100644 index 0000000..65fd3d2 Binary files /dev/null and b/content_skaterift/sound/leaves1.ogg differ diff --git a/content_skaterift/sound/leaves2.ogg b/content_skaterift/sound/leaves2.ogg new file mode 100644 index 0000000..34fdab7 Binary files /dev/null and b/content_skaterift/sound/leaves2.ogg differ diff --git a/content_skaterift/sound/leaves3.ogg b/content_skaterift/sound/leaves3.ogg new file mode 100644 index 0000000..b47d1c2 Binary files /dev/null and b/content_skaterift/sound/leaves3.ogg differ diff --git a/content_skaterift/sound/lf0.ogg b/content_skaterift/sound/lf0.ogg new file mode 100644 index 0000000..e291439 Binary files /dev/null and b/content_skaterift/sound/lf0.ogg differ diff --git a/content_skaterift/sound/lf1.ogg b/content_skaterift/sound/lf1.ogg new file mode 100644 index 0000000..d0ea026 Binary files /dev/null and b/content_skaterift/sound/lf1.ogg differ diff --git a/content_skaterift/sound/lf2.ogg b/content_skaterift/sound/lf2.ogg new file mode 100644 index 0000000..03d3562 Binary files /dev/null and b/content_skaterift/sound/lf2.ogg differ diff --git a/content_skaterift/sound/lf3.ogg b/content_skaterift/sound/lf3.ogg new file mode 100644 index 0000000..00f6e48 Binary files /dev/null and b/content_skaterift/sound/lf3.ogg differ diff --git a/content_skaterift/sound/metalscrape.ogg b/content_skaterift/sound/metalscrape.ogg new file mode 100644 index 0000000..c6448c5 Binary files /dev/null and b/content_skaterift/sound/metalscrape.ogg differ diff --git a/content_skaterift/sound/mis2.ogg b/content_skaterift/sound/mis2.ogg new file mode 100644 index 0000000..e8df3bd Binary files /dev/null and b/content_skaterift/sound/mis2.ogg differ diff --git a/content_skaterift/sound/misc0.ogg b/content_skaterift/sound/misc0.ogg new file mode 100644 index 0000000..e1b6635 Binary files /dev/null and b/content_skaterift/sound/misc0.ogg differ diff --git a/content_skaterift/sound/misc1.ogg b/content_skaterift/sound/misc1.ogg new file mode 100644 index 0000000..6dc526f Binary files /dev/null and b/content_skaterift/sound/misc1.ogg differ diff --git a/content_skaterift/sound/misc3.ogg b/content_skaterift/sound/misc3.ogg new file mode 100644 index 0000000..9feb230 Binary files /dev/null and b/content_skaterift/sound/misc3.ogg differ diff --git a/content_skaterift/sound/misc5.ogg b/content_skaterift/sound/misc5.ogg new file mode 100644 index 0000000..301704d Binary files /dev/null and b/content_skaterift/sound/misc5.ogg differ diff --git a/content_skaterift/sound/misc6.ogg b/content_skaterift/sound/misc6.ogg new file mode 100644 index 0000000..5c740fb Binary files /dev/null and b/content_skaterift/sound/misc6.ogg differ diff --git a/content_skaterift/sound/misk4.ogg b/content_skaterift/sound/misk4.ogg new file mode 100644 index 0000000..29e1c1c Binary files /dev/null and b/content_skaterift/sound/misk4.ogg differ diff --git a/content_skaterift/sound/objective0.ogg b/content_skaterift/sound/objective0.ogg new file mode 100644 index 0000000..349b72c Binary files /dev/null and b/content_skaterift/sound/objective0.ogg differ diff --git a/content_skaterift/sound/objective1.ogg b/content_skaterift/sound/objective1.ogg new file mode 100644 index 0000000..5cde9e3 Binary files /dev/null and b/content_skaterift/sound/objective1.ogg differ diff --git a/content_skaterift/sound/objective_fail.ogg b/content_skaterift/sound/objective_fail.ogg new file mode 100644 index 0000000..6f60481 Binary files /dev/null and b/content_skaterift/sound/objective_fail.ogg differ diff --git a/content_skaterift/sound/objective_win.ogg b/content_skaterift/sound/objective_win.ogg new file mode 100644 index 0000000..e5edc04 Binary files /dev/null and b/content_skaterift/sound/objective_win.ogg differ diff --git a/content_skaterift/sound/onto.ogg b/content_skaterift/sound/onto.ogg new file mode 100644 index 0000000..d982b77 Binary files /dev/null and b/content_skaterift/sound/onto.ogg differ diff --git a/content_skaterift/sound/outo.ogg b/content_skaterift/sound/outo.ogg new file mode 100644 index 0000000..371002d Binary files /dev/null and b/content_skaterift/sound/outo.ogg differ diff --git a/content_skaterift/sound/pencil.ogg b/content_skaterift/sound/pencil.ogg new file mode 100644 index 0000000..a89eb4a Binary files /dev/null and b/content_skaterift/sound/pencil.ogg differ diff --git a/content_skaterift/sound/reverb.ogg b/content_skaterift/sound/reverb.ogg new file mode 100644 index 0000000..b8bb4d8 Binary files /dev/null and b/content_skaterift/sound/reverb.ogg differ diff --git a/content_skaterift/sound/revert0.ogg b/content_skaterift/sound/revert0.ogg new file mode 100644 index 0000000..632fcda Binary files /dev/null and b/content_skaterift/sound/revert0.ogg differ diff --git a/content_skaterift/sound/revert1.ogg b/content_skaterift/sound/revert1.ogg new file mode 100644 index 0000000..cd68628 Binary files /dev/null and b/content_skaterift/sound/revert1.ogg differ diff --git a/content_skaterift/sound/revert2.ogg b/content_skaterift/sound/revert2.ogg new file mode 100644 index 0000000..e4b6296 Binary files /dev/null and b/content_skaterift/sound/revert2.ogg differ diff --git a/content_skaterift/sound/revert3.ogg b/content_skaterift/sound/revert3.ogg new file mode 100644 index 0000000..920c9d7 Binary files /dev/null and b/content_skaterift/sound/revert3.ogg differ diff --git a/content_skaterift/sound/revert4.ogg b/content_skaterift/sound/revert4.ogg new file mode 100644 index 0000000..a07274c Binary files /dev/null and b/content_skaterift/sound/revert4.ogg differ diff --git a/content_skaterift/sound/rewind_clack.ogg b/content_skaterift/sound/rewind_clack.ogg new file mode 100644 index 0000000..1f46789 Binary files /dev/null and b/content_skaterift/sound/rewind_clack.ogg differ diff --git a/content_skaterift/sound/rewind_end_1.5.ogg b/content_skaterift/sound/rewind_end_1.5.ogg new file mode 100644 index 0000000..9bc606c Binary files /dev/null and b/content_skaterift/sound/rewind_end_1.5.ogg differ diff --git a/content_skaterift/sound/rewind_end_2.5.ogg b/content_skaterift/sound/rewind_end_2.5.ogg new file mode 100644 index 0000000..e154612 Binary files /dev/null and b/content_skaterift/sound/rewind_end_2.5.ogg differ diff --git a/content_skaterift/sound/rewind_end_6.5.ogg b/content_skaterift/sound/rewind_end_6.5.ogg new file mode 100644 index 0000000..1569bb1 Binary files /dev/null and b/content_skaterift/sound/rewind_end_6.5.ogg differ diff --git a/content_skaterift/sound/rewind_start.ogg b/content_skaterift/sound/rewind_start.ogg new file mode 100644 index 0000000..8f9513a Binary files /dev/null and b/content_skaterift/sound/rewind_start.ogg differ diff --git a/content_skaterift/sound/skate.ogg b/content_skaterift/sound/skate.ogg new file mode 100644 index 0000000..06b2144 Binary files /dev/null and b/content_skaterift/sound/skate.ogg differ diff --git a/content_skaterift/sound/skate_hpf.ogg b/content_skaterift/sound/skate_hpf.ogg new file mode 100644 index 0000000..d7ba94b Binary files /dev/null and b/content_skaterift/sound/skate_hpf.ogg differ diff --git a/content_skaterift/sound/slide.ogg b/content_skaterift/sound/slide.ogg new file mode 100644 index 0000000..ccfe4be Binary files /dev/null and b/content_skaterift/sound/slide.ogg differ diff --git a/content_skaterift/sound/slidetap.ogg b/content_skaterift/sound/slidetap.ogg new file mode 100644 index 0000000..72a070d Binary files /dev/null and b/content_skaterift/sound/slidetap.ogg differ diff --git a/content_skaterift/sound/snap0.ogg b/content_skaterift/sound/snap0.ogg new file mode 100644 index 0000000..b9e5b1b Binary files /dev/null and b/content_skaterift/sound/snap0.ogg differ diff --git a/content_skaterift/sound/snap1.ogg b/content_skaterift/sound/snap1.ogg new file mode 100644 index 0000000..fb21ebc Binary files /dev/null and b/content_skaterift/sound/snap1.ogg differ diff --git a/content_skaterift/sound/snap2.ogg b/content_skaterift/sound/snap2.ogg new file mode 100644 index 0000000..8f266dd Binary files /dev/null and b/content_skaterift/sound/snap2.ogg differ diff --git a/content_skaterift/sound/snap3.ogg b/content_skaterift/sound/snap3.ogg new file mode 100644 index 0000000..4a5c3f5 Binary files /dev/null and b/content_skaterift/sound/snap3.ogg differ diff --git a/content_skaterift/sound/splash.ogg b/content_skaterift/sound/splash.ogg new file mode 100644 index 0000000..2af25f4 Binary files /dev/null and b/content_skaterift/sound/splash.ogg differ diff --git a/content_skaterift/sound/step_bush0.ogg b/content_skaterift/sound/step_bush0.ogg new file mode 100644 index 0000000..9915390 Binary files /dev/null and b/content_skaterift/sound/step_bush0.ogg differ diff --git a/content_skaterift/sound/step_bush1.ogg b/content_skaterift/sound/step_bush1.ogg new file mode 100644 index 0000000..ed3f61b Binary files /dev/null and b/content_skaterift/sound/step_bush1.ogg differ diff --git a/content_skaterift/sound/step_bush2.ogg b/content_skaterift/sound/step_bush2.ogg new file mode 100644 index 0000000..6a1e497 Binary files /dev/null and b/content_skaterift/sound/step_bush2.ogg differ diff --git a/content_skaterift/sound/step_bush3.ogg b/content_skaterift/sound/step_bush3.ogg new file mode 100644 index 0000000..690ddb4 Binary files /dev/null and b/content_skaterift/sound/step_bush3.ogg differ diff --git a/content_skaterift/sound/step_bush4.ogg b/content_skaterift/sound/step_bush4.ogg new file mode 100644 index 0000000..b15a526 Binary files /dev/null and b/content_skaterift/sound/step_bush4.ogg differ diff --git a/content_skaterift/sound/step_bush5.ogg b/content_skaterift/sound/step_bush5.ogg new file mode 100644 index 0000000..bab49f0 Binary files /dev/null and b/content_skaterift/sound/step_bush5.ogg differ diff --git a/content_skaterift/sound/step_concrete0.ogg b/content_skaterift/sound/step_concrete0.ogg new file mode 100644 index 0000000..5fad2a8 Binary files /dev/null and b/content_skaterift/sound/step_concrete0.ogg differ diff --git a/content_skaterift/sound/step_concrete1.ogg b/content_skaterift/sound/step_concrete1.ogg new file mode 100644 index 0000000..a65d1d3 Binary files /dev/null and b/content_skaterift/sound/step_concrete1.ogg differ diff --git a/content_skaterift/sound/step_concrete2.ogg b/content_skaterift/sound/step_concrete2.ogg new file mode 100644 index 0000000..1920a9d Binary files /dev/null and b/content_skaterift/sound/step_concrete2.ogg differ diff --git a/content_skaterift/sound/step_concrete3.ogg b/content_skaterift/sound/step_concrete3.ogg new file mode 100644 index 0000000..45ce8be Binary files /dev/null and b/content_skaterift/sound/step_concrete3.ogg differ diff --git a/content_skaterift/sound/step_gravel0.ogg b/content_skaterift/sound/step_gravel0.ogg new file mode 100644 index 0000000..a3f8e81 Binary files /dev/null and b/content_skaterift/sound/step_gravel0.ogg differ diff --git a/content_skaterift/sound/step_gravel1.ogg b/content_skaterift/sound/step_gravel1.ogg new file mode 100644 index 0000000..53c87f1 Binary files /dev/null and b/content_skaterift/sound/step_gravel1.ogg differ diff --git a/content_skaterift/sound/step_gravel2.ogg b/content_skaterift/sound/step_gravel2.ogg new file mode 100644 index 0000000..e72e000 Binary files /dev/null and b/content_skaterift/sound/step_gravel2.ogg differ diff --git a/content_skaterift/sound/step_gravel3.ogg b/content_skaterift/sound/step_gravel3.ogg new file mode 100644 index 0000000..cc67c14 Binary files /dev/null and b/content_skaterift/sound/step_gravel3.ogg differ diff --git a/content_skaterift/sound/step_wood0.ogg b/content_skaterift/sound/step_wood0.ogg new file mode 100644 index 0000000..10d94ba Binary files /dev/null and b/content_skaterift/sound/step_wood0.ogg differ diff --git a/content_skaterift/sound/step_wood1.ogg b/content_skaterift/sound/step_wood1.ogg new file mode 100644 index 0000000..33c9621 Binary files /dev/null and b/content_skaterift/sound/step_wood1.ogg differ diff --git a/content_skaterift/sound/step_wood2.ogg b/content_skaterift/sound/step_wood2.ogg new file mode 100644 index 0000000..adf21c5 Binary files /dev/null and b/content_skaterift/sound/step_wood2.ogg differ diff --git a/content_skaterift/sound/step_wood3.ogg b/content_skaterift/sound/step_wood3.ogg new file mode 100644 index 0000000..ee3e76e Binary files /dev/null and b/content_skaterift/sound/step_wood3.ogg differ diff --git a/content_skaterift/sound/step_wood4.ogg b/content_skaterift/sound/step_wood4.ogg new file mode 100644 index 0000000..2485d2c Binary files /dev/null and b/content_skaterift/sound/step_wood4.ogg differ diff --git a/content_skaterift/sound/step_wood5.ogg b/content_skaterift/sound/step_wood5.ogg new file mode 100644 index 0000000..3af0687 Binary files /dev/null and b/content_skaterift/sound/step_wood5.ogg differ diff --git a/content_skaterift/sound/tap0.ogg b/content_skaterift/sound/tap0.ogg new file mode 100644 index 0000000..5ca8205 Binary files /dev/null and b/content_skaterift/sound/tap0.ogg differ diff --git a/content_skaterift/sound/tap1.ogg b/content_skaterift/sound/tap1.ogg new file mode 100644 index 0000000..da5f612 Binary files /dev/null and b/content_skaterift/sound/tap1.ogg differ diff --git a/content_skaterift/sound/tap2.ogg b/content_skaterift/sound/tap2.ogg new file mode 100644 index 0000000..a259644 Binary files /dev/null and b/content_skaterift/sound/tap2.ogg differ diff --git a/content_skaterift/sound/tap3.ogg b/content_skaterift/sound/tap3.ogg new file mode 100644 index 0000000..ebf9664 Binary files /dev/null and b/content_skaterift/sound/tap3.ogg differ diff --git a/content_skaterift/sound/teleport.ogg b/content_skaterift/sound/teleport.ogg new file mode 100644 index 0000000..dfce51e Binary files /dev/null and b/content_skaterift/sound/teleport.ogg differ diff --git a/content_skaterift/sound/town_generic.ogg b/content_skaterift/sound/town_generic.ogg new file mode 100644 index 0000000..a0f565b Binary files /dev/null and b/content_skaterift/sound/town_generic.ogg differ diff --git a/content_skaterift/sound/ui_click.ogg b/content_skaterift/sound/ui_click.ogg new file mode 100644 index 0000000..fd8728e Binary files /dev/null and b/content_skaterift/sound/ui_click.ogg differ diff --git a/content_skaterift/sound/ui_ding.ogg b/content_skaterift/sound/ui_ding.ogg new file mode 100644 index 0000000..9b8c8f6 Binary files /dev/null and b/content_skaterift/sound/ui_ding.ogg differ diff --git a/content_skaterift/sound/ui_good.ogg b/content_skaterift/sound/ui_good.ogg new file mode 100644 index 0000000..35ddefc Binary files /dev/null and b/content_skaterift/sound/ui_good.ogg differ diff --git a/content_skaterift/sound/ui_inf.ogg b/content_skaterift/sound/ui_inf.ogg new file mode 100644 index 0000000..d5c34e8 Binary files /dev/null and b/content_skaterift/sound/ui_inf.ogg differ diff --git a/content_skaterift/sound/ui_move.ogg b/content_skaterift/sound/ui_move.ogg new file mode 100644 index 0000000..fe3fb86 Binary files /dev/null and b/content_skaterift/sound/ui_move.ogg differ diff --git a/content_skaterift/sound/ui_ok.ogg b/content_skaterift/sound/ui_ok.ogg new file mode 100644 index 0000000..7d90d5f Binary files /dev/null and b/content_skaterift/sound/ui_ok.ogg differ diff --git a/content_skaterift/sound/ute.ogg b/content_skaterift/sound/ute.ogg new file mode 100644 index 0000000..fb73263 Binary files /dev/null and b/content_skaterift/sound/ute.ogg differ diff --git a/content_skaterift/sound/ute_horn.ogg b/content_skaterift/sound/ute_horn.ogg new file mode 100644 index 0000000..770807c Binary files /dev/null and b/content_skaterift/sound/ute_horn.ogg differ diff --git a/content_skaterift/sound/wave0.ogg b/content_skaterift/sound/wave0.ogg new file mode 100644 index 0000000..d453182 Binary files /dev/null and b/content_skaterift/sound/wave0.ogg differ diff --git a/content_skaterift/sound/wave1.ogg b/content_skaterift/sound/wave1.ogg new file mode 100644 index 0000000..8a95a5f Binary files /dev/null and b/content_skaterift/sound/wave1.ogg differ diff --git a/content_skaterift/sound/wave2.ogg b/content_skaterift/sound/wave2.ogg new file mode 100644 index 0000000..fdd0d32 Binary files /dev/null and b/content_skaterift/sound/wave2.ogg differ diff --git a/content_skaterift/sound/wave3.ogg b/content_skaterift/sound/wave3.ogg new file mode 100644 index 0000000..7e8e31c Binary files /dev/null and b/content_skaterift/sound/wave3.ogg differ diff --git a/content_skaterift/sound/wave4.ogg b/content_skaterift/sound/wave4.ogg new file mode 100644 index 0000000..ad5ebf9 Binary files /dev/null and b/content_skaterift/sound/wave4.ogg differ diff --git a/content_skaterift/sound/wave5.ogg b/content_skaterift/sound/wave5.ogg new file mode 100644 index 0000000..41040ff Binary files /dev/null and b/content_skaterift/sound/wave5.ogg differ diff --git a/content_skaterift/sound/wheel.ogg b/content_skaterift/sound/wheel.ogg new file mode 100644 index 0000000..28e09bc Binary files /dev/null and b/content_skaterift/sound/wheel.ogg differ diff --git a/content_skaterift/sound/woodimpact.ogg b/content_skaterift/sound/woodimpact.ogg new file mode 100644 index 0000000..ae56fd1 Binary files /dev/null and b/content_skaterift/sound/woodimpact.ogg differ diff --git a/content_skaterift/sound/woodroll0.ogg b/content_skaterift/sound/woodroll0.ogg new file mode 100644 index 0000000..b512134 Binary files /dev/null and b/content_skaterift/sound/woodroll0.ogg differ diff --git a/content_skaterift/sound/woodroll1.ogg b/content_skaterift/sound/woodroll1.ogg new file mode 100644 index 0000000..e7b31f2 Binary files /dev/null and b/content_skaterift/sound/woodroll1.ogg differ diff --git a/content_skaterift/sound/woodroll2.ogg b/content_skaterift/sound/woodroll2.ogg new file mode 100644 index 0000000..9bf8629 Binary files /dev/null and b/content_skaterift/sound/woodroll2.ogg differ diff --git a/content_skaterift/sound/woodslide.ogg b/content_skaterift/sound/woodslide.ogg new file mode 100644 index 0000000..23602e3 Binary files /dev/null and b/content_skaterift/sound/woodslide.ogg differ diff --git a/content_skaterift/textures/alphatest.qoi b/content_skaterift/textures/alphatest.qoi new file mode 100644 index 0000000..ca0689e Binary files /dev/null and b/content_skaterift/textures/alphatest.qoi differ diff --git a/content_skaterift/textures/ch_gradient.qoi b/content_skaterift/textures/ch_gradient.qoi new file mode 100644 index 0000000..49581e5 Binary files /dev/null and b/content_skaterift/textures/ch_gradient.qoi differ diff --git a/content_skaterift/textures/garbage.qoi b/content_skaterift/textures/garbage.qoi new file mode 100644 index 0000000..86ace1e Binary files /dev/null and b/content_skaterift/textures/garbage.qoi differ diff --git a/content_skaterift/textures/gradients.qoi b/content_skaterift/textures/gradients.qoi new file mode 100644 index 0000000..ca7dd39 Binary files /dev/null and b/content_skaterift/textures/gradients.qoi differ diff --git a/content_skaterift/textures/graffitibox.qoi b/content_skaterift/textures/graffitibox.qoi new file mode 100644 index 0000000..8180f75 Binary files /dev/null and b/content_skaterift/textures/graffitibox.qoi differ diff --git a/content_skaterift/textures/menu.qoi b/content_skaterift/textures/menu.qoi new file mode 100644 index 0000000..e626f9f Binary files /dev/null and b/content_skaterift/textures/menu.qoi differ diff --git a/content_skaterift/textures/prem.qoi b/content_skaterift/textures/prem.qoi new file mode 100644 index 0000000..34e706e Binary files /dev/null and b/content_skaterift/textures/prem.qoi differ diff --git a/content_skaterift/textures/scoretext.qoi b/content_skaterift/textures/scoretext.qoi new file mode 100644 index 0000000..9152159 Binary files /dev/null and b/content_skaterift/textures/scoretext.qoi differ diff --git a/content_skaterift/textures/water_surf.qoi b/content_skaterift/textures/water_surf.qoi new file mode 100644 index 0000000..c54252a Binary files /dev/null and b/content_skaterift/textures/water_surf.qoi differ diff --git a/control_overlay.h b/control_overlay.h index 0ce6561..5cf358c 100644 --- a/control_overlay.h +++ b/control_overlay.h @@ -4,7 +4,7 @@ c0_start( "control_overlay.h.c0" ); mdl_context ctx; -mdl_open( &ctx, "models_src/rs_overlay.mdl", NULL ); +mdl_open( &ctx, "content_skaterift/models/rs_overlay.mdl", NULL ); mdl_load_metadata_block( &ctx, NULL ); mdl_close( &ctx ); diff --git a/maps_src/dev_flatworld/main.mdl b/maps_src/dev_flatworld/main.mdl deleted file mode 100644 index f9c326c..0000000 Binary files a/maps_src/dev_flatworld/main.mdl and /dev/null differ diff --git a/maps_src/dev_hub/main.mdl b/maps_src/dev_hub/main.mdl deleted file mode 100644 index 28304f5..0000000 Binary files a/maps_src/dev_hub/main.mdl and /dev/null differ diff --git a/maps_src/dev_tutorial/main.mdl b/maps_src/dev_tutorial/main.mdl deleted file mode 100644 index 9a24db8..0000000 Binary files a/maps_src/dev_tutorial/main.mdl and /dev/null differ diff --git a/maps_src/mp_line1/main.mdl b/maps_src/mp_line1/main.mdl deleted file mode 100644 index 047f8a8..0000000 Binary files a/maps_src/mp_line1/main.mdl and /dev/null differ diff --git a/maps_src/mp_mtzero/main.mdl b/maps_src/mp_mtzero/main.mdl deleted file mode 100644 index 87d11a4..0000000 Binary files a/maps_src/mp_mtzero/main.mdl and /dev/null differ diff --git a/maps_src/mp_spawn/main.mdl b/maps_src/mp_spawn/main.mdl deleted file mode 100644 index 74fb300..0000000 Binary files a/maps_src/mp_spawn/main.mdl and /dev/null differ diff --git a/models_src/board_none.mdl b/models_src/board_none.mdl deleted file mode 100644 index b644f1c..0000000 Binary files a/models_src/board_none.mdl and /dev/null differ diff --git a/models_src/ch_none.mdl b/models_src/ch_none.mdl deleted file mode 100644 index 760fda4..0000000 Binary files a/models_src/ch_none.mdl and /dev/null differ diff --git a/models_src/glider.mdl b/models_src/glider.mdl deleted file mode 100644 index 0a2ca3c..0000000 Binary files a/models_src/glider.mdl and /dev/null differ diff --git a/models_src/gumpa.mdl b/models_src/gumpa.mdl deleted file mode 100644 index d0ccc28..0000000 Binary files a/models_src/gumpa.mdl and /dev/null differ diff --git a/models_src/rs_buggy.mdl b/models_src/rs_buggy.mdl deleted file mode 100644 index c814154..0000000 Binary files a/models_src/rs_buggy.mdl and /dev/null differ diff --git a/models_src/rs_font.mdl b/models_src/rs_font.mdl deleted file mode 100644 index 7d2d808..0000000 Binary files a/models_src/rs_font.mdl and /dev/null differ diff --git a/models_src/rs_gate.mdl b/models_src/rs_gate.mdl deleted file mode 100644 index 1cae7c1..0000000 Binary files a/models_src/rs_gate.mdl and /dev/null differ diff --git a/models_src/rs_icons.mdl b/models_src/rs_icons.mdl deleted file mode 100644 index 4d303dd..0000000 Binary files a/models_src/rs_icons.mdl and /dev/null differ diff --git a/models_src/rs_menu.mdl b/models_src/rs_menu.mdl deleted file mode 100644 index fe41c20..0000000 Binary files a/models_src/rs_menu.mdl and /dev/null differ diff --git a/models_src/rs_overlay.mdl b/models_src/rs_overlay.mdl deleted file mode 100644 index 96c6a96..0000000 Binary files a/models_src/rs_overlay.mdl and /dev/null differ diff --git a/models_src/rs_portal.mdl b/models_src/rs_portal.mdl deleted file mode 100644 index 73fd2f2..0000000 Binary files a/models_src/rs_portal.mdl and /dev/null differ diff --git a/models_src/rs_scoretext.mdl b/models_src/rs_scoretext.mdl deleted file mode 100644 index 5731170..0000000 Binary files a/models_src/rs_scoretext.mdl and /dev/null differ diff --git a/models_src/rs_skydome.mdl b/models_src/rs_skydome.mdl deleted file mode 100644 index 53980b1..0000000 Binary files a/models_src/rs_skydome.mdl and /dev/null differ diff --git a/models_src/slowmos.mdl b/models_src/slowmos.mdl deleted file mode 100644 index 90d508f..0000000 Binary files a/models_src/slowmos.mdl and /dev/null differ diff --git a/models_src/volc_flight.mdl b/models_src/volc_flight.mdl deleted file mode 100644 index 02a7c78..0000000 Binary files a/models_src/volc_flight.mdl and /dev/null differ diff --git a/playermodels_src/skaterift_aaron/addon.inf b/playermodels_src/skaterift_aaron/addon.inf deleted file mode 100644 index f357ede..0000000 Binary files a/playermodels_src/skaterift_aaron/addon.inf and /dev/null differ diff --git a/playermodels_src/skaterift_aaron/ch_aaron.mdl b/playermodels_src/skaterift_aaron/ch_aaron.mdl deleted file mode 100644 index 808d496..0000000 Binary files a/playermodels_src/skaterift_aaron/ch_aaron.mdl and /dev/null differ diff --git a/playermodels_src/skaterift_chip/addon.inf b/playermodels_src/skaterift_chip/addon.inf deleted file mode 100644 index 3ad4bde..0000000 Binary files a/playermodels_src/skaterift_chip/addon.inf and /dev/null differ diff --git a/playermodels_src/skaterift_chip/ch_chip.mdl b/playermodels_src/skaterift_chip/ch_chip.mdl deleted file mode 100644 index 92d3153..0000000 Binary files a/playermodels_src/skaterift_chip/ch_chip.mdl and /dev/null differ diff --git a/playermodels_src/skaterift_ela/ch_ela.mdl b/playermodels_src/skaterift_ela/ch_ela.mdl deleted file mode 100644 index 0d165c0..0000000 Binary files a/playermodels_src/skaterift_ela/ch_ela.mdl and /dev/null differ diff --git a/playermodels_src/skaterift_j/ch_j.mdl b/playermodels_src/skaterift_j/ch_j.mdl deleted file mode 100644 index 876bcd7..0000000 Binary files a/playermodels_src/skaterift_j/ch_j.mdl and /dev/null differ diff --git a/playermodels_src/skaterift_john/ch_john.mdl b/playermodels_src/skaterift_john/ch_john.mdl deleted file mode 100644 index f5f3239..0000000 Binary files a/playermodels_src/skaterift_john/ch_john.mdl and /dev/null differ diff --git a/playermodels_src/skaterift_jordan/addon.inf b/playermodels_src/skaterift_jordan/addon.inf deleted file mode 100644 index 513da41..0000000 Binary files a/playermodels_src/skaterift_jordan/addon.inf and /dev/null differ diff --git a/playermodels_src/skaterift_jordan/ch_jordan.mdl b/playermodels_src/skaterift_jordan/ch_jordan.mdl deleted file mode 100644 index c3d26f1..0000000 Binary files a/playermodels_src/skaterift_jordan/ch_jordan.mdl and /dev/null differ diff --git a/playermodels_src/skaterift_new/addon.inf b/playermodels_src/skaterift_new/addon.inf deleted file mode 100644 index 9a932a5..0000000 Binary files a/playermodels_src/skaterift_new/addon.inf and /dev/null differ diff --git a/playermodels_src/skaterift_new/ch_new.mdl b/playermodels_src/skaterift_new/ch_new.mdl deleted file mode 100644 index 1a43925..0000000 Binary files a/playermodels_src/skaterift_new/ch_new.mdl and /dev/null differ diff --git a/playermodels_src/skaterift_outlaw/addon.inf b/playermodels_src/skaterift_outlaw/addon.inf deleted file mode 100644 index 49e9bec..0000000 Binary files a/playermodels_src/skaterift_outlaw/addon.inf and /dev/null differ diff --git a/playermodels_src/skaterift_outlaw/ch_outlaw.mdl b/playermodels_src/skaterift_outlaw/ch_outlaw.mdl deleted file mode 100644 index c27a6e9..0000000 Binary files a/playermodels_src/skaterift_outlaw/ch_outlaw.mdl and /dev/null differ diff --git a/sound_src/bird0.ogg b/sound_src/bird0.ogg deleted file mode 100644 index adb1f03..0000000 Binary files a/sound_src/bird0.ogg and /dev/null differ diff --git a/sound_src/bird1.ogg b/sound_src/bird1.ogg deleted file mode 100644 index 077fd78..0000000 Binary files a/sound_src/bird1.ogg and /dev/null differ diff --git a/sound_src/bird2.ogg b/sound_src/bird2.ogg deleted file mode 100644 index 3389374..0000000 Binary files a/sound_src/bird2.ogg and /dev/null differ diff --git a/sound_src/ding.ogg b/sound_src/ding.ogg deleted file mode 100644 index 904467d..0000000 Binary files a/sound_src/ding.ogg and /dev/null differ diff --git a/sound_src/docks_generic.ogg b/sound_src/docks_generic.ogg deleted file mode 100644 index 526f213..0000000 Binary files a/sound_src/docks_generic.ogg and /dev/null differ diff --git a/sound_src/field_generic.ogg b/sound_src/field_generic.ogg deleted file mode 100644 index 79b02ab..0000000 Binary files a/sound_src/field_generic.ogg and /dev/null differ diff --git a/sound_src/garden_generic.ogg b/sound_src/garden_generic.ogg deleted file mode 100644 index efe5871..0000000 Binary files a/sound_src/garden_generic.ogg and /dev/null differ diff --git a/sound_src/gate_ambient.ogg b/sound_src/gate_ambient.ogg deleted file mode 100644 index 5dfa781..0000000 Binary files a/sound_src/gate_ambient.ogg and /dev/null differ diff --git a/sound_src/gate_lap.ogg b/sound_src/gate_lap.ogg deleted file mode 100644 index 81a0930..0000000 Binary files a/sound_src/gate_lap.ogg and /dev/null differ diff --git a/sound_src/gate_pass.ogg b/sound_src/gate_pass.ogg deleted file mode 100644 index 1201d4e..0000000 Binary files a/sound_src/gate_pass.ogg and /dev/null differ diff --git a/sound_src/grass0.ogg b/sound_src/grass0.ogg deleted file mode 100644 index a6f0d83..0000000 Binary files a/sound_src/grass0.ogg and /dev/null differ diff --git a/sound_src/grass1.ogg b/sound_src/grass1.ogg deleted file mode 100644 index 7768c65..0000000 Binary files a/sound_src/grass1.ogg and /dev/null differ diff --git a/sound_src/grass2.ogg b/sound_src/grass2.ogg deleted file mode 100644 index a05ea59..0000000 Binary files a/sound_src/grass2.ogg and /dev/null differ diff --git a/sound_src/grass3.ogg b/sound_src/grass3.ogg deleted file mode 100644 index 038fe8a..0000000 Binary files a/sound_src/grass3.ogg and /dev/null differ diff --git a/sound_src/grind_enter.ogg b/sound_src/grind_enter.ogg deleted file mode 100644 index f2c0e62..0000000 Binary files a/sound_src/grind_enter.ogg and /dev/null differ diff --git a/sound_src/grind_exit.ogg b/sound_src/grind_exit.ogg deleted file mode 100644 index fa28116..0000000 Binary files a/sound_src/grind_exit.ogg and /dev/null differ diff --git a/sound_src/grind_loop.ogg b/sound_src/grind_loop.ogg deleted file mode 100644 index 339645f..0000000 Binary files a/sound_src/grind_loop.ogg and /dev/null differ diff --git a/sound_src/grobplab.ogg b/sound_src/grobplab.ogg deleted file mode 100644 index 32ce5b2..0000000 Binary files a/sound_src/grobplab.ogg and /dev/null differ diff --git a/sound_src/gumpa-theme.ogg b/sound_src/gumpa-theme.ogg deleted file mode 100644 index 60bdf82..0000000 Binary files a/sound_src/gumpa-theme.ogg and /dev/null differ diff --git a/sound_src/hit0.ogg b/sound_src/hit0.ogg deleted file mode 100644 index 6627558..0000000 Binary files a/sound_src/hit0.ogg and /dev/null differ diff --git a/sound_src/hit1.ogg b/sound_src/hit1.ogg deleted file mode 100644 index d019f69..0000000 Binary files a/sound_src/hit1.ogg and /dev/null differ diff --git a/sound_src/hit2.ogg b/sound_src/hit2.ogg deleted file mode 100644 index c9593cc..0000000 Binary files a/sound_src/hit2.ogg and /dev/null differ diff --git a/sound_src/hit3.ogg b/sound_src/hit3.ogg deleted file mode 100644 index ce49ae1..0000000 Binary files a/sound_src/hit3.ogg and /dev/null differ diff --git a/sound_src/hit4.ogg b/sound_src/hit4.ogg deleted file mode 100644 index b793d19..0000000 Binary files a/sound_src/hit4.ogg and /dev/null differ diff --git a/sound_src/jump0.ogg b/sound_src/jump0.ogg deleted file mode 100644 index 6dfc541..0000000 Binary files a/sound_src/jump0.ogg and /dev/null differ diff --git a/sound_src/jump1.ogg b/sound_src/jump1.ogg deleted file mode 100644 index fac3165..0000000 Binary files a/sound_src/jump1.ogg and /dev/null differ diff --git a/sound_src/jump2.ogg b/sound_src/jump2.ogg deleted file mode 100644 index cb9f59f..0000000 Binary files a/sound_src/jump2.ogg and /dev/null differ diff --git a/sound_src/jump3.ogg b/sound_src/jump3.ogg deleted file mode 100644 index 0380bf5..0000000 Binary files a/sound_src/jump3.ogg and /dev/null differ diff --git a/sound_src/land0.ogg b/sound_src/land0.ogg deleted file mode 100644 index 6fafaf4..0000000 Binary files a/sound_src/land0.ogg and /dev/null differ diff --git a/sound_src/land1.ogg b/sound_src/land1.ogg deleted file mode 100644 index b28b3f3..0000000 Binary files a/sound_src/land1.ogg and /dev/null differ diff --git a/sound_src/land2.ogg b/sound_src/land2.ogg deleted file mode 100644 index 17d1949..0000000 Binary files a/sound_src/land2.ogg and /dev/null differ diff --git a/sound_src/landsk0.ogg b/sound_src/landsk0.ogg deleted file mode 100644 index 6de28b5..0000000 Binary files a/sound_src/landsk0.ogg and /dev/null differ diff --git a/sound_src/landsk1.ogg b/sound_src/landsk1.ogg deleted file mode 100644 index 136b512..0000000 Binary files a/sound_src/landsk1.ogg and /dev/null differ diff --git a/sound_src/leaves0.ogg b/sound_src/leaves0.ogg deleted file mode 100644 index 3af6c5f..0000000 Binary files a/sound_src/leaves0.ogg and /dev/null differ diff --git a/sound_src/leaves1.ogg b/sound_src/leaves1.ogg deleted file mode 100644 index 65fd3d2..0000000 Binary files a/sound_src/leaves1.ogg and /dev/null differ diff --git a/sound_src/leaves2.ogg b/sound_src/leaves2.ogg deleted file mode 100644 index 34fdab7..0000000 Binary files a/sound_src/leaves2.ogg and /dev/null differ diff --git a/sound_src/leaves3.ogg b/sound_src/leaves3.ogg deleted file mode 100644 index b47d1c2..0000000 Binary files a/sound_src/leaves3.ogg and /dev/null differ diff --git a/sound_src/lf0.ogg b/sound_src/lf0.ogg deleted file mode 100644 index e291439..0000000 Binary files a/sound_src/lf0.ogg and /dev/null differ diff --git a/sound_src/lf1.ogg b/sound_src/lf1.ogg deleted file mode 100644 index d0ea026..0000000 Binary files a/sound_src/lf1.ogg and /dev/null differ diff --git a/sound_src/lf2.ogg b/sound_src/lf2.ogg deleted file mode 100644 index 03d3562..0000000 Binary files a/sound_src/lf2.ogg and /dev/null differ diff --git a/sound_src/lf3.ogg b/sound_src/lf3.ogg deleted file mode 100644 index 00f6e48..0000000 Binary files a/sound_src/lf3.ogg and /dev/null differ diff --git a/sound_src/metalscrape.ogg b/sound_src/metalscrape.ogg deleted file mode 100644 index c6448c5..0000000 Binary files a/sound_src/metalscrape.ogg and /dev/null differ diff --git a/sound_src/mis2.ogg b/sound_src/mis2.ogg deleted file mode 100644 index e8df3bd..0000000 Binary files a/sound_src/mis2.ogg and /dev/null differ diff --git a/sound_src/misc0.ogg b/sound_src/misc0.ogg deleted file mode 100644 index e1b6635..0000000 Binary files a/sound_src/misc0.ogg and /dev/null differ diff --git a/sound_src/misc1.ogg b/sound_src/misc1.ogg deleted file mode 100644 index 6dc526f..0000000 Binary files a/sound_src/misc1.ogg and /dev/null differ diff --git a/sound_src/misc3.ogg b/sound_src/misc3.ogg deleted file mode 100644 index 9feb230..0000000 Binary files a/sound_src/misc3.ogg and /dev/null differ diff --git a/sound_src/misc5.ogg b/sound_src/misc5.ogg deleted file mode 100644 index 301704d..0000000 Binary files a/sound_src/misc5.ogg and /dev/null differ diff --git a/sound_src/misc6.ogg b/sound_src/misc6.ogg deleted file mode 100644 index 5c740fb..0000000 Binary files a/sound_src/misc6.ogg and /dev/null differ diff --git a/sound_src/misk4.ogg b/sound_src/misk4.ogg deleted file mode 100644 index 29e1c1c..0000000 Binary files a/sound_src/misk4.ogg and /dev/null differ diff --git a/sound_src/objective0.ogg b/sound_src/objective0.ogg deleted file mode 100644 index 349b72c..0000000 Binary files a/sound_src/objective0.ogg and /dev/null differ diff --git a/sound_src/objective1.ogg b/sound_src/objective1.ogg deleted file mode 100644 index 5cde9e3..0000000 Binary files a/sound_src/objective1.ogg and /dev/null differ diff --git a/sound_src/objective_fail.ogg b/sound_src/objective_fail.ogg deleted file mode 100644 index 6f60481..0000000 Binary files a/sound_src/objective_fail.ogg and /dev/null differ diff --git a/sound_src/objective_win.ogg b/sound_src/objective_win.ogg deleted file mode 100644 index e5edc04..0000000 Binary files a/sound_src/objective_win.ogg and /dev/null differ diff --git a/sound_src/onto.ogg b/sound_src/onto.ogg deleted file mode 100644 index d982b77..0000000 Binary files a/sound_src/onto.ogg and /dev/null differ diff --git a/sound_src/outo.ogg b/sound_src/outo.ogg deleted file mode 100644 index 371002d..0000000 Binary files a/sound_src/outo.ogg and /dev/null differ diff --git a/sound_src/pencil.ogg b/sound_src/pencil.ogg deleted file mode 100644 index a89eb4a..0000000 Binary files a/sound_src/pencil.ogg and /dev/null differ diff --git a/sound_src/reverb.ogg b/sound_src/reverb.ogg deleted file mode 100644 index b8bb4d8..0000000 Binary files a/sound_src/reverb.ogg and /dev/null differ diff --git a/sound_src/revert0.ogg b/sound_src/revert0.ogg deleted file mode 100644 index 632fcda..0000000 Binary files a/sound_src/revert0.ogg and /dev/null differ diff --git a/sound_src/revert1.ogg b/sound_src/revert1.ogg deleted file mode 100644 index cd68628..0000000 Binary files a/sound_src/revert1.ogg and /dev/null differ diff --git a/sound_src/revert2.ogg b/sound_src/revert2.ogg deleted file mode 100644 index e4b6296..0000000 Binary files a/sound_src/revert2.ogg and /dev/null differ diff --git a/sound_src/revert3.ogg b/sound_src/revert3.ogg deleted file mode 100644 index 920c9d7..0000000 Binary files a/sound_src/revert3.ogg and /dev/null differ diff --git a/sound_src/revert4.ogg b/sound_src/revert4.ogg deleted file mode 100644 index a07274c..0000000 Binary files a/sound_src/revert4.ogg and /dev/null differ diff --git a/sound_src/rewind_clack.ogg b/sound_src/rewind_clack.ogg deleted file mode 100644 index 1f46789..0000000 Binary files a/sound_src/rewind_clack.ogg and /dev/null differ diff --git a/sound_src/rewind_end_1.5.ogg b/sound_src/rewind_end_1.5.ogg deleted file mode 100644 index 9bc606c..0000000 Binary files a/sound_src/rewind_end_1.5.ogg and /dev/null differ diff --git a/sound_src/rewind_end_2.5.ogg b/sound_src/rewind_end_2.5.ogg deleted file mode 100644 index e154612..0000000 Binary files a/sound_src/rewind_end_2.5.ogg and /dev/null differ diff --git a/sound_src/rewind_end_6.5.ogg b/sound_src/rewind_end_6.5.ogg deleted file mode 100644 index 1569bb1..0000000 Binary files a/sound_src/rewind_end_6.5.ogg and /dev/null differ diff --git a/sound_src/rewind_start.ogg b/sound_src/rewind_start.ogg deleted file mode 100644 index 8f9513a..0000000 Binary files a/sound_src/rewind_start.ogg and /dev/null differ diff --git a/sound_src/skate.ogg b/sound_src/skate.ogg deleted file mode 100644 index 06b2144..0000000 Binary files a/sound_src/skate.ogg and /dev/null differ diff --git a/sound_src/skate_hpf.ogg b/sound_src/skate_hpf.ogg deleted file mode 100644 index d7ba94b..0000000 Binary files a/sound_src/skate_hpf.ogg and /dev/null differ diff --git a/sound_src/slide.ogg b/sound_src/slide.ogg deleted file mode 100644 index ccfe4be..0000000 Binary files a/sound_src/slide.ogg and /dev/null differ diff --git a/sound_src/slidetap.ogg b/sound_src/slidetap.ogg deleted file mode 100644 index 72a070d..0000000 Binary files a/sound_src/slidetap.ogg and /dev/null differ diff --git a/sound_src/snap0.ogg b/sound_src/snap0.ogg deleted file mode 100644 index b9e5b1b..0000000 Binary files a/sound_src/snap0.ogg and /dev/null differ diff --git a/sound_src/snap1.ogg b/sound_src/snap1.ogg deleted file mode 100644 index fb21ebc..0000000 Binary files a/sound_src/snap1.ogg and /dev/null differ diff --git a/sound_src/snap2.ogg b/sound_src/snap2.ogg deleted file mode 100644 index 8f266dd..0000000 Binary files a/sound_src/snap2.ogg and /dev/null differ diff --git a/sound_src/snap3.ogg b/sound_src/snap3.ogg deleted file mode 100644 index 4a5c3f5..0000000 Binary files a/sound_src/snap3.ogg and /dev/null differ diff --git a/sound_src/splash.ogg b/sound_src/splash.ogg deleted file mode 100644 index 2af25f4..0000000 Binary files a/sound_src/splash.ogg and /dev/null differ diff --git a/sound_src/step_bush0.ogg b/sound_src/step_bush0.ogg deleted file mode 100644 index 9915390..0000000 Binary files a/sound_src/step_bush0.ogg and /dev/null differ diff --git a/sound_src/step_bush1.ogg b/sound_src/step_bush1.ogg deleted file mode 100644 index ed3f61b..0000000 Binary files a/sound_src/step_bush1.ogg and /dev/null differ diff --git a/sound_src/step_bush2.ogg b/sound_src/step_bush2.ogg deleted file mode 100644 index 6a1e497..0000000 Binary files a/sound_src/step_bush2.ogg and /dev/null differ diff --git a/sound_src/step_bush3.ogg b/sound_src/step_bush3.ogg deleted file mode 100644 index 690ddb4..0000000 Binary files a/sound_src/step_bush3.ogg and /dev/null differ diff --git a/sound_src/step_bush4.ogg b/sound_src/step_bush4.ogg deleted file mode 100644 index b15a526..0000000 Binary files a/sound_src/step_bush4.ogg and /dev/null differ diff --git a/sound_src/step_bush5.ogg b/sound_src/step_bush5.ogg deleted file mode 100644 index bab49f0..0000000 Binary files a/sound_src/step_bush5.ogg and /dev/null differ diff --git a/sound_src/step_concrete0.ogg b/sound_src/step_concrete0.ogg deleted file mode 100644 index 5fad2a8..0000000 Binary files a/sound_src/step_concrete0.ogg and /dev/null differ diff --git a/sound_src/step_concrete1.ogg b/sound_src/step_concrete1.ogg deleted file mode 100644 index a65d1d3..0000000 Binary files a/sound_src/step_concrete1.ogg and /dev/null differ diff --git a/sound_src/step_concrete2.ogg b/sound_src/step_concrete2.ogg deleted file mode 100644 index 1920a9d..0000000 Binary files a/sound_src/step_concrete2.ogg and /dev/null differ diff --git a/sound_src/step_concrete3.ogg b/sound_src/step_concrete3.ogg deleted file mode 100644 index 45ce8be..0000000 Binary files a/sound_src/step_concrete3.ogg and /dev/null differ diff --git a/sound_src/step_gravel0.ogg b/sound_src/step_gravel0.ogg deleted file mode 100644 index a3f8e81..0000000 Binary files a/sound_src/step_gravel0.ogg and /dev/null differ diff --git a/sound_src/step_gravel1.ogg b/sound_src/step_gravel1.ogg deleted file mode 100644 index 53c87f1..0000000 Binary files a/sound_src/step_gravel1.ogg and /dev/null differ diff --git a/sound_src/step_gravel2.ogg b/sound_src/step_gravel2.ogg deleted file mode 100644 index e72e000..0000000 Binary files a/sound_src/step_gravel2.ogg and /dev/null differ diff --git a/sound_src/step_gravel3.ogg b/sound_src/step_gravel3.ogg deleted file mode 100644 index cc67c14..0000000 Binary files a/sound_src/step_gravel3.ogg and /dev/null differ diff --git a/sound_src/step_wood0.ogg b/sound_src/step_wood0.ogg deleted file mode 100644 index 10d94ba..0000000 Binary files a/sound_src/step_wood0.ogg and /dev/null differ diff --git a/sound_src/step_wood1.ogg b/sound_src/step_wood1.ogg deleted file mode 100644 index 33c9621..0000000 Binary files a/sound_src/step_wood1.ogg and /dev/null differ diff --git a/sound_src/step_wood2.ogg b/sound_src/step_wood2.ogg deleted file mode 100644 index adf21c5..0000000 Binary files a/sound_src/step_wood2.ogg and /dev/null differ diff --git a/sound_src/step_wood3.ogg b/sound_src/step_wood3.ogg deleted file mode 100644 index ee3e76e..0000000 Binary files a/sound_src/step_wood3.ogg and /dev/null differ diff --git a/sound_src/step_wood4.ogg b/sound_src/step_wood4.ogg deleted file mode 100644 index 2485d2c..0000000 Binary files a/sound_src/step_wood4.ogg and /dev/null differ diff --git a/sound_src/step_wood5.ogg b/sound_src/step_wood5.ogg deleted file mode 100644 index 3af0687..0000000 Binary files a/sound_src/step_wood5.ogg and /dev/null differ diff --git a/sound_src/tap0.ogg b/sound_src/tap0.ogg deleted file mode 100644 index 5ca8205..0000000 Binary files a/sound_src/tap0.ogg and /dev/null differ diff --git a/sound_src/tap1.ogg b/sound_src/tap1.ogg deleted file mode 100644 index da5f612..0000000 Binary files a/sound_src/tap1.ogg and /dev/null differ diff --git a/sound_src/tap2.ogg b/sound_src/tap2.ogg deleted file mode 100644 index a259644..0000000 Binary files a/sound_src/tap2.ogg and /dev/null differ diff --git a/sound_src/tap3.ogg b/sound_src/tap3.ogg deleted file mode 100644 index ebf9664..0000000 Binary files a/sound_src/tap3.ogg and /dev/null differ diff --git a/sound_src/teleport.ogg b/sound_src/teleport.ogg deleted file mode 100644 index dfce51e..0000000 Binary files a/sound_src/teleport.ogg and /dev/null differ diff --git a/sound_src/town_generic.ogg b/sound_src/town_generic.ogg deleted file mode 100644 index a0f565b..0000000 Binary files a/sound_src/town_generic.ogg and /dev/null differ diff --git a/sound_src/ui_click.ogg b/sound_src/ui_click.ogg deleted file mode 100644 index fd8728e..0000000 Binary files a/sound_src/ui_click.ogg and /dev/null differ diff --git a/sound_src/ui_ding.ogg b/sound_src/ui_ding.ogg deleted file mode 100644 index 9b8c8f6..0000000 Binary files a/sound_src/ui_ding.ogg and /dev/null differ diff --git a/sound_src/ui_good.ogg b/sound_src/ui_good.ogg deleted file mode 100644 index 35ddefc..0000000 Binary files a/sound_src/ui_good.ogg and /dev/null differ diff --git a/sound_src/ui_inf.ogg b/sound_src/ui_inf.ogg deleted file mode 100644 index d5c34e8..0000000 Binary files a/sound_src/ui_inf.ogg and /dev/null differ diff --git a/sound_src/ui_move.ogg b/sound_src/ui_move.ogg deleted file mode 100644 index fe3fb86..0000000 Binary files a/sound_src/ui_move.ogg and /dev/null differ diff --git a/sound_src/ui_ok.ogg b/sound_src/ui_ok.ogg deleted file mode 100644 index 7d90d5f..0000000 Binary files a/sound_src/ui_ok.ogg and /dev/null differ diff --git a/sound_src/ute.ogg b/sound_src/ute.ogg deleted file mode 100644 index fb73263..0000000 Binary files a/sound_src/ute.ogg and /dev/null differ diff --git a/sound_src/ute_horn.ogg b/sound_src/ute_horn.ogg deleted file mode 100644 index 770807c..0000000 Binary files a/sound_src/ute_horn.ogg and /dev/null differ diff --git a/sound_src/wave0.ogg b/sound_src/wave0.ogg deleted file mode 100644 index d453182..0000000 Binary files a/sound_src/wave0.ogg and /dev/null differ diff --git a/sound_src/wave1.ogg b/sound_src/wave1.ogg deleted file mode 100644 index 8a95a5f..0000000 Binary files a/sound_src/wave1.ogg and /dev/null differ diff --git a/sound_src/wave2.ogg b/sound_src/wave2.ogg deleted file mode 100644 index fdd0d32..0000000 Binary files a/sound_src/wave2.ogg and /dev/null differ diff --git a/sound_src/wave3.ogg b/sound_src/wave3.ogg deleted file mode 100644 index 7e8e31c..0000000 Binary files a/sound_src/wave3.ogg and /dev/null differ diff --git a/sound_src/wave4.ogg b/sound_src/wave4.ogg deleted file mode 100644 index ad5ebf9..0000000 Binary files a/sound_src/wave4.ogg and /dev/null differ diff --git a/sound_src/wave5.ogg b/sound_src/wave5.ogg deleted file mode 100644 index 41040ff..0000000 Binary files a/sound_src/wave5.ogg and /dev/null differ diff --git a/sound_src/wheel.ogg b/sound_src/wheel.ogg deleted file mode 100644 index 28e09bc..0000000 Binary files a/sound_src/wheel.ogg and /dev/null differ diff --git a/sound_src/woodimpact.ogg b/sound_src/woodimpact.ogg deleted file mode 100644 index ae56fd1..0000000 Binary files a/sound_src/woodimpact.ogg and /dev/null differ diff --git a/sound_src/woodroll0.ogg b/sound_src/woodroll0.ogg deleted file mode 100644 index b512134..0000000 Binary files a/sound_src/woodroll0.ogg and /dev/null differ diff --git a/sound_src/woodroll1.ogg b/sound_src/woodroll1.ogg deleted file mode 100644 index e7b31f2..0000000 Binary files a/sound_src/woodroll1.ogg and /dev/null differ diff --git a/sound_src/woodroll2.ogg b/sound_src/woodroll2.ogg deleted file mode 100644 index 9bf8629..0000000 Binary files a/sound_src/woodroll2.ogg and /dev/null differ diff --git a/sound_src/woodslide.ogg b/sound_src/woodslide.ogg deleted file mode 100644 index 23602e3..0000000 Binary files a/sound_src/woodslide.ogg and /dev/null differ diff --git a/textures_src/alphatest.qoi b/textures_src/alphatest.qoi deleted file mode 100644 index ca0689e..0000000 Binary files a/textures_src/alphatest.qoi and /dev/null differ diff --git a/textures_src/ch_gradient.qoi b/textures_src/ch_gradient.qoi deleted file mode 100644 index 49581e5..0000000 Binary files a/textures_src/ch_gradient.qoi and /dev/null differ diff --git a/textures_src/garbage.qoi b/textures_src/garbage.qoi deleted file mode 100644 index 86ace1e..0000000 Binary files a/textures_src/garbage.qoi and /dev/null differ diff --git a/textures_src/gradients.qoi b/textures_src/gradients.qoi deleted file mode 100644 index ca7dd39..0000000 Binary files a/textures_src/gradients.qoi and /dev/null differ diff --git a/textures_src/graffitibox.qoi b/textures_src/graffitibox.qoi deleted file mode 100644 index 8180f75..0000000 Binary files a/textures_src/graffitibox.qoi and /dev/null differ diff --git a/textures_src/menu.qoi b/textures_src/menu.qoi deleted file mode 100644 index e626f9f..0000000 Binary files a/textures_src/menu.qoi and /dev/null differ diff --git a/textures_src/prem.qoi b/textures_src/prem.qoi deleted file mode 100644 index 34e706e..0000000 Binary files a/textures_src/prem.qoi and /dev/null differ diff --git a/textures_src/scoretext.qoi b/textures_src/scoretext.qoi deleted file mode 100644 index 9152159..0000000 Binary files a/textures_src/scoretext.qoi and /dev/null differ diff --git a/textures_src/water_surf.qoi b/textures_src/water_surf.qoi deleted file mode 100644 index c54252a..0000000 Binary files a/textures_src/water_surf.qoi and /dev/null differ