├── .gitignore ├── .vscode ├── commandbar.json ├── launch.json ├── settings.json └── tasks.json ├── LICENSE ├── art ├── banner.png ├── cat0.gif ├── cat1.gif ├── cover.png ├── cover.psd ├── coverLD.png ├── coverLD.psd ├── gameElements.psd ├── gameElements.tps ├── skin.psd └── title.psd ├── base.hxml ├── bin ├── client.hl └── client.js ├── hl.debug.hxml ├── hl.hxml ├── js.html ├── js.hxml ├── redist.js ├── client.js └── index.html ├── redist.sdl ├── CatsAreAssholes.mac │ ├── CatsAreAssholes │ ├── hlboot.dat │ ├── libSDL2-2.0.0.dylib │ ├── libhl.dylib │ ├── libmbedtls.10.dylib │ ├── libopenal.1.dylib │ ├── libpng16.16.dylib │ ├── libuv.1.dylib │ ├── libvorbis.0.dylib │ └── libvorbisfile.3.dylib └── CatsAreAssholes.win │ ├── CatsAreAssholes.exe │ ├── OpenAL32.dll │ ├── SDL2.dll │ ├── fmt.hdll │ ├── hlboot.dat │ ├── libhl.dll │ ├── msvcr120.dll │ ├── openal.hdll │ ├── sdl.hdll │ ├── ssl.hdll │ ├── ui.hdll │ └── uv.hdll ├── res ├── cdbTiles.png ├── data.cdb ├── gameElements.atlas ├── gameElements.png ├── items.png ├── jazz_hl.ogg ├── jazz_js.mp3 ├── minecraftiaOutline.fnt ├── minecraftiaOutline.png ├── sfx │ ├── ball0.lch │ ├── ball0.wav │ ├── bleep0.lch │ ├── bleep0.wav │ ├── bleep1.lch │ ├── bleep1.wav │ ├── bleep2.lch │ ├── bleep2.wav │ ├── bleep3.lch │ ├── bleep3.wav │ ├── cat0.lch │ ├── cat0.wav │ ├── cat1.lch │ ├── cat1.wav │ ├── cat2.lch │ ├── cat2.wav │ ├── cat3.lch │ ├── cat3.wav │ ├── cat4.lch │ ├── cat4.wav │ ├── coin0.lch │ ├── coin0.wav │ ├── drop0.lch │ ├── drop0.wav │ ├── drop1.lch │ ├── drop1.wav │ ├── drop2.lch │ ├── drop2.wav │ ├── error0.lch │ ├── error0.wav │ ├── fridge0.lch │ ├── fridge0.wav │ ├── kat0.wav │ ├── kat1.wav │ ├── kat2.wav │ ├── kat3.wav │ ├── kat4.wav │ ├── kat5.wav │ ├── kat6.wav │ ├── kat7.wav │ ├── kat8.wav │ ├── menu0.lch │ ├── menu0.wav │ ├── openDoor.lch │ ├── openDoor.wav │ ├── pick0.lch │ ├── pick0.wav │ ├── pick1.lch │ ├── pick1.wav │ ├── pick2.lch │ ├── pick2.wav │ ├── step0.lch │ ├── step0.wav │ ├── step1.lch │ ├── step1.wav │ ├── step2.lch │ ├── step2.wav │ ├── trash0.lch │ ├── trash0.wav │ ├── upgrade0.lch │ └── upgrade0.wav └── skin.png ├── sounds ├── jazz.ceol ├── meows1.aup ├── meows1_data │ └── e00 │ │ └── d00 │ │ ├── e0000d39.au │ │ └── e0000e8d.au ├── meows2.aup └── meows2_data │ └── e00 │ └── d00 │ ├── e00004f0.au │ ├── e0000b0f.au │ ├── e0000bc9.au │ └── e0000d9b.au └── src ├── Assets.hx ├── Boot.hx ├── CPoint.hx ├── Console.hx ├── Const.hx ├── Data.hx ├── DecisionHelper.hx ├── Entity.hx ├── Fx.hx ├── Game.hx ├── Lang.hx ├── Level.hx ├── Main.hx ├── MoneyMan.hx ├── Tutorial.hx ├── Viewport.hx ├── en ├── Cat.hx ├── Coin.hx ├── Furn.hx ├── Hero.hx ├── Interactive.hx ├── f │ └── Ball.hx ├── h │ ├── Grandma.hx │ └── Sidekick.hx └── inter │ ├── Door.hx │ ├── FoodTray.hx │ ├── Fridge.hx │ ├── ItemDrop.hx │ ├── Litter.hx │ ├── Shop.hx │ └── TrashCan.hx ├── import.hx └── ui ├── Followers.hx ├── Life.hx ├── Message.hx ├── Money.hx ├── ShopWindow.hx ├── Title.hx └── TutorialTip.hx /.gitignore: -------------------------------------------------------------------------------- 1 | /art/export/*.png 2 | /sounds/jazz.wav 3 | /res/.tmp 4 | -------------------------------------------------------------------------------- /.vscode/commandbar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/.vscode/commandbar.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/LICENSE -------------------------------------------------------------------------------- /art/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/art/banner.png -------------------------------------------------------------------------------- /art/cat0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/art/cat0.gif -------------------------------------------------------------------------------- /art/cat1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/art/cat1.gif -------------------------------------------------------------------------------- /art/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/art/cover.png -------------------------------------------------------------------------------- /art/cover.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/art/cover.psd -------------------------------------------------------------------------------- /art/coverLD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/art/coverLD.png -------------------------------------------------------------------------------- /art/coverLD.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/art/coverLD.psd -------------------------------------------------------------------------------- /art/gameElements.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/art/gameElements.psd -------------------------------------------------------------------------------- /art/gameElements.tps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/art/gameElements.tps -------------------------------------------------------------------------------- /art/skin.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/art/skin.psd -------------------------------------------------------------------------------- /art/title.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/art/title.psd -------------------------------------------------------------------------------- /base.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/base.hxml -------------------------------------------------------------------------------- /bin/client.hl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/bin/client.hl -------------------------------------------------------------------------------- /bin/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/bin/client.js -------------------------------------------------------------------------------- /hl.debug.hxml: -------------------------------------------------------------------------------- 1 | hl.hxml 2 | -debug -------------------------------------------------------------------------------- /hl.hxml: -------------------------------------------------------------------------------- 1 | base.hxml 2 | -lib hlsdl 3 | -D windowSize=1280x720 4 | -hl bin/client.hl 5 | -------------------------------------------------------------------------------- /js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/js.html -------------------------------------------------------------------------------- /js.hxml: -------------------------------------------------------------------------------- 1 | base.hxml 2 | -lib stb_ogg_sound 3 | -js bin/client.js 4 | -------------------------------------------------------------------------------- /redist.js/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/redist.js/client.js -------------------------------------------------------------------------------- /redist.js/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/redist.js/index.html -------------------------------------------------------------------------------- /redist.sdl/CatsAreAssholes.mac/CatsAreAssholes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/redist.sdl/CatsAreAssholes.mac/CatsAreAssholes -------------------------------------------------------------------------------- /redist.sdl/CatsAreAssholes.mac/hlboot.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/redist.sdl/CatsAreAssholes.mac/hlboot.dat -------------------------------------------------------------------------------- /redist.sdl/CatsAreAssholes.mac/libSDL2-2.0.0.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/redist.sdl/CatsAreAssholes.mac/libSDL2-2.0.0.dylib -------------------------------------------------------------------------------- /redist.sdl/CatsAreAssholes.mac/libhl.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/redist.sdl/CatsAreAssholes.mac/libhl.dylib -------------------------------------------------------------------------------- /redist.sdl/CatsAreAssholes.mac/libmbedtls.10.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/redist.sdl/CatsAreAssholes.mac/libmbedtls.10.dylib -------------------------------------------------------------------------------- /redist.sdl/CatsAreAssholes.mac/libopenal.1.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/redist.sdl/CatsAreAssholes.mac/libopenal.1.dylib -------------------------------------------------------------------------------- /redist.sdl/CatsAreAssholes.mac/libpng16.16.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/redist.sdl/CatsAreAssholes.mac/libpng16.16.dylib -------------------------------------------------------------------------------- /redist.sdl/CatsAreAssholes.mac/libuv.1.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/redist.sdl/CatsAreAssholes.mac/libuv.1.dylib -------------------------------------------------------------------------------- /redist.sdl/CatsAreAssholes.mac/libvorbis.0.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/redist.sdl/CatsAreAssholes.mac/libvorbis.0.dylib -------------------------------------------------------------------------------- /redist.sdl/CatsAreAssholes.mac/libvorbisfile.3.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/redist.sdl/CatsAreAssholes.mac/libvorbisfile.3.dylib -------------------------------------------------------------------------------- /redist.sdl/CatsAreAssholes.win/CatsAreAssholes.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/redist.sdl/CatsAreAssholes.win/CatsAreAssholes.exe -------------------------------------------------------------------------------- /redist.sdl/CatsAreAssholes.win/OpenAL32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/redist.sdl/CatsAreAssholes.win/OpenAL32.dll -------------------------------------------------------------------------------- /redist.sdl/CatsAreAssholes.win/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/redist.sdl/CatsAreAssholes.win/SDL2.dll -------------------------------------------------------------------------------- /redist.sdl/CatsAreAssholes.win/fmt.hdll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/redist.sdl/CatsAreAssholes.win/fmt.hdll -------------------------------------------------------------------------------- /redist.sdl/CatsAreAssholes.win/hlboot.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/redist.sdl/CatsAreAssholes.win/hlboot.dat -------------------------------------------------------------------------------- /redist.sdl/CatsAreAssholes.win/libhl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/redist.sdl/CatsAreAssholes.win/libhl.dll -------------------------------------------------------------------------------- /redist.sdl/CatsAreAssholes.win/msvcr120.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/redist.sdl/CatsAreAssholes.win/msvcr120.dll -------------------------------------------------------------------------------- /redist.sdl/CatsAreAssholes.win/openal.hdll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/redist.sdl/CatsAreAssholes.win/openal.hdll -------------------------------------------------------------------------------- /redist.sdl/CatsAreAssholes.win/sdl.hdll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/redist.sdl/CatsAreAssholes.win/sdl.hdll -------------------------------------------------------------------------------- /redist.sdl/CatsAreAssholes.win/ssl.hdll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/redist.sdl/CatsAreAssholes.win/ssl.hdll -------------------------------------------------------------------------------- /redist.sdl/CatsAreAssholes.win/ui.hdll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/redist.sdl/CatsAreAssholes.win/ui.hdll -------------------------------------------------------------------------------- /redist.sdl/CatsAreAssholes.win/uv.hdll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/redist.sdl/CatsAreAssholes.win/uv.hdll -------------------------------------------------------------------------------- /res/cdbTiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/res/cdbTiles.png -------------------------------------------------------------------------------- /res/data.cdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/res/data.cdb -------------------------------------------------------------------------------- /res/gameElements.atlas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/res/gameElements.atlas -------------------------------------------------------------------------------- /res/gameElements.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/res/gameElements.png -------------------------------------------------------------------------------- /res/items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/res/items.png -------------------------------------------------------------------------------- /res/jazz_hl.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/res/jazz_hl.ogg -------------------------------------------------------------------------------- /res/jazz_js.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/res/jazz_js.mp3 -------------------------------------------------------------------------------- /res/minecraftiaOutline.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/res/minecraftiaOutline.fnt -------------------------------------------------------------------------------- /res/minecraftiaOutline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/res/minecraftiaOutline.png -------------------------------------------------------------------------------- /res/sfx/ball0.lch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/res/sfx/ball0.lch -------------------------------------------------------------------------------- /res/sfx/ball0.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/res/sfx/ball0.wav -------------------------------------------------------------------------------- /res/sfx/bleep0.lch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/res/sfx/bleep0.lch -------------------------------------------------------------------------------- /res/sfx/bleep0.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/res/sfx/bleep0.wav -------------------------------------------------------------------------------- /res/sfx/bleep1.lch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/res/sfx/bleep1.lch -------------------------------------------------------------------------------- /res/sfx/bleep1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/res/sfx/bleep1.wav -------------------------------------------------------------------------------- /res/sfx/bleep2.lch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/res/sfx/bleep2.lch -------------------------------------------------------------------------------- /res/sfx/bleep2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/res/sfx/bleep2.wav -------------------------------------------------------------------------------- /res/sfx/bleep3.lch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/res/sfx/bleep3.lch -------------------------------------------------------------------------------- /res/sfx/bleep3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/res/sfx/bleep3.wav -------------------------------------------------------------------------------- /res/sfx/cat0.lch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/res/sfx/cat0.lch -------------------------------------------------------------------------------- /res/sfx/cat0.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/res/sfx/cat0.wav -------------------------------------------------------------------------------- /res/sfx/cat1.lch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/res/sfx/cat1.lch -------------------------------------------------------------------------------- /res/sfx/cat1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/res/sfx/cat1.wav -------------------------------------------------------------------------------- /res/sfx/cat2.lch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/res/sfx/cat2.lch -------------------------------------------------------------------------------- /res/sfx/cat2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/res/sfx/cat2.wav -------------------------------------------------------------------------------- /res/sfx/cat3.lch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/res/sfx/cat3.lch -------------------------------------------------------------------------------- /res/sfx/cat3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/res/sfx/cat3.wav -------------------------------------------------------------------------------- /res/sfx/cat4.lch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/res/sfx/cat4.lch -------------------------------------------------------------------------------- /res/sfx/cat4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/res/sfx/cat4.wav -------------------------------------------------------------------------------- /res/sfx/coin0.lch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/res/sfx/coin0.lch -------------------------------------------------------------------------------- /res/sfx/coin0.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/res/sfx/coin0.wav -------------------------------------------------------------------------------- /res/sfx/drop0.lch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/res/sfx/drop0.lch -------------------------------------------------------------------------------- /res/sfx/drop0.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/res/sfx/drop0.wav -------------------------------------------------------------------------------- /res/sfx/drop1.lch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/res/sfx/drop1.lch -------------------------------------------------------------------------------- /res/sfx/drop1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/res/sfx/drop1.wav -------------------------------------------------------------------------------- /res/sfx/drop2.lch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/res/sfx/drop2.lch -------------------------------------------------------------------------------- /res/sfx/drop2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/res/sfx/drop2.wav -------------------------------------------------------------------------------- /res/sfx/error0.lch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/res/sfx/error0.lch -------------------------------------------------------------------------------- /res/sfx/error0.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/res/sfx/error0.wav -------------------------------------------------------------------------------- /res/sfx/fridge0.lch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/res/sfx/fridge0.lch -------------------------------------------------------------------------------- /res/sfx/fridge0.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/res/sfx/fridge0.wav -------------------------------------------------------------------------------- /res/sfx/kat0.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/res/sfx/kat0.wav -------------------------------------------------------------------------------- /res/sfx/kat1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/res/sfx/kat1.wav -------------------------------------------------------------------------------- /res/sfx/kat2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/res/sfx/kat2.wav -------------------------------------------------------------------------------- /res/sfx/kat3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/res/sfx/kat3.wav -------------------------------------------------------------------------------- /res/sfx/kat4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/res/sfx/kat4.wav -------------------------------------------------------------------------------- /res/sfx/kat5.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/res/sfx/kat5.wav -------------------------------------------------------------------------------- /res/sfx/kat6.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/res/sfx/kat6.wav -------------------------------------------------------------------------------- /res/sfx/kat7.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/res/sfx/kat7.wav -------------------------------------------------------------------------------- /res/sfx/kat8.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/res/sfx/kat8.wav -------------------------------------------------------------------------------- /res/sfx/menu0.lch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/res/sfx/menu0.lch -------------------------------------------------------------------------------- /res/sfx/menu0.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/res/sfx/menu0.wav -------------------------------------------------------------------------------- /res/sfx/openDoor.lch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/res/sfx/openDoor.lch -------------------------------------------------------------------------------- /res/sfx/openDoor.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/res/sfx/openDoor.wav -------------------------------------------------------------------------------- /res/sfx/pick0.lch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/res/sfx/pick0.lch -------------------------------------------------------------------------------- /res/sfx/pick0.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/res/sfx/pick0.wav -------------------------------------------------------------------------------- /res/sfx/pick1.lch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/res/sfx/pick1.lch -------------------------------------------------------------------------------- /res/sfx/pick1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/res/sfx/pick1.wav -------------------------------------------------------------------------------- /res/sfx/pick2.lch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/res/sfx/pick2.lch -------------------------------------------------------------------------------- /res/sfx/pick2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/res/sfx/pick2.wav -------------------------------------------------------------------------------- /res/sfx/step0.lch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/res/sfx/step0.lch -------------------------------------------------------------------------------- /res/sfx/step0.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/res/sfx/step0.wav -------------------------------------------------------------------------------- /res/sfx/step1.lch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/res/sfx/step1.lch -------------------------------------------------------------------------------- /res/sfx/step1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/res/sfx/step1.wav -------------------------------------------------------------------------------- /res/sfx/step2.lch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/res/sfx/step2.lch -------------------------------------------------------------------------------- /res/sfx/step2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/res/sfx/step2.wav -------------------------------------------------------------------------------- /res/sfx/trash0.lch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/res/sfx/trash0.lch -------------------------------------------------------------------------------- /res/sfx/trash0.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/res/sfx/trash0.wav -------------------------------------------------------------------------------- /res/sfx/upgrade0.lch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/res/sfx/upgrade0.lch -------------------------------------------------------------------------------- /res/sfx/upgrade0.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/res/sfx/upgrade0.wav -------------------------------------------------------------------------------- /res/skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/res/skin.png -------------------------------------------------------------------------------- /sounds/jazz.ceol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/sounds/jazz.ceol -------------------------------------------------------------------------------- /sounds/meows1.aup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/sounds/meows1.aup -------------------------------------------------------------------------------- /sounds/meows1_data/e00/d00/e0000d39.au: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/sounds/meows1_data/e00/d00/e0000d39.au -------------------------------------------------------------------------------- /sounds/meows1_data/e00/d00/e0000e8d.au: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/sounds/meows1_data/e00/d00/e0000e8d.au -------------------------------------------------------------------------------- /sounds/meows2.aup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/sounds/meows2.aup -------------------------------------------------------------------------------- /sounds/meows2_data/e00/d00/e00004f0.au: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/sounds/meows2_data/e00/d00/e00004f0.au -------------------------------------------------------------------------------- /sounds/meows2_data/e00/d00/e0000b0f.au: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/sounds/meows2_data/e00/d00/e0000b0f.au -------------------------------------------------------------------------------- /sounds/meows2_data/e00/d00/e0000bc9.au: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/sounds/meows2_data/e00/d00/e0000bc9.au -------------------------------------------------------------------------------- /sounds/meows2_data/e00/d00/e0000d9b.au: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/sounds/meows2_data/e00/d00/e0000d9b.au -------------------------------------------------------------------------------- /src/Assets.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/src/Assets.hx -------------------------------------------------------------------------------- /src/Boot.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/src/Boot.hx -------------------------------------------------------------------------------- /src/CPoint.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/src/CPoint.hx -------------------------------------------------------------------------------- /src/Console.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/src/Console.hx -------------------------------------------------------------------------------- /src/Const.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/src/Const.hx -------------------------------------------------------------------------------- /src/Data.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/src/Data.hx -------------------------------------------------------------------------------- /src/DecisionHelper.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/src/DecisionHelper.hx -------------------------------------------------------------------------------- /src/Entity.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/src/Entity.hx -------------------------------------------------------------------------------- /src/Fx.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/src/Fx.hx -------------------------------------------------------------------------------- /src/Game.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/src/Game.hx -------------------------------------------------------------------------------- /src/Lang.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/src/Lang.hx -------------------------------------------------------------------------------- /src/Level.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/src/Level.hx -------------------------------------------------------------------------------- /src/Main.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/src/Main.hx -------------------------------------------------------------------------------- /src/MoneyMan.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/src/MoneyMan.hx -------------------------------------------------------------------------------- /src/Tutorial.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/src/Tutorial.hx -------------------------------------------------------------------------------- /src/Viewport.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/src/Viewport.hx -------------------------------------------------------------------------------- /src/en/Cat.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/src/en/Cat.hx -------------------------------------------------------------------------------- /src/en/Coin.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/src/en/Coin.hx -------------------------------------------------------------------------------- /src/en/Furn.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/src/en/Furn.hx -------------------------------------------------------------------------------- /src/en/Hero.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/src/en/Hero.hx -------------------------------------------------------------------------------- /src/en/Interactive.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/src/en/Interactive.hx -------------------------------------------------------------------------------- /src/en/f/Ball.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/src/en/f/Ball.hx -------------------------------------------------------------------------------- /src/en/h/Grandma.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/src/en/h/Grandma.hx -------------------------------------------------------------------------------- /src/en/h/Sidekick.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/src/en/h/Sidekick.hx -------------------------------------------------------------------------------- /src/en/inter/Door.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/src/en/inter/Door.hx -------------------------------------------------------------------------------- /src/en/inter/FoodTray.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/src/en/inter/FoodTray.hx -------------------------------------------------------------------------------- /src/en/inter/Fridge.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/src/en/inter/Fridge.hx -------------------------------------------------------------------------------- /src/en/inter/ItemDrop.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/src/en/inter/ItemDrop.hx -------------------------------------------------------------------------------- /src/en/inter/Litter.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/src/en/inter/Litter.hx -------------------------------------------------------------------------------- /src/en/inter/Shop.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/src/en/inter/Shop.hx -------------------------------------------------------------------------------- /src/en/inter/TrashCan.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/src/en/inter/TrashCan.hx -------------------------------------------------------------------------------- /src/import.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/src/import.hx -------------------------------------------------------------------------------- /src/ui/Followers.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/src/ui/Followers.hx -------------------------------------------------------------------------------- /src/ui/Life.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/src/ui/Life.hx -------------------------------------------------------------------------------- /src/ui/Message.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/src/ui/Message.hx -------------------------------------------------------------------------------- /src/ui/Money.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/src/ui/Money.hx -------------------------------------------------------------------------------- /src/ui/ShopWindow.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/src/ui/ShopWindow.hx -------------------------------------------------------------------------------- /src/ui/Title.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/src/ui/Title.hx -------------------------------------------------------------------------------- /src/ui/TutorialTip.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepnight/ld40-catsAreAssholes/HEAD/src/ui/TutorialTip.hx --------------------------------------------------------------------------------