├── README.md ├── mm3 ├── cityviewer │ └── src │ │ ├── main.cpp │ │ ├── pak.cpp │ │ ├── pak.h │ │ ├── util.h │ │ ├── xbc.cpp │ │ └── xbc.h ├── cmpviewer │ └── src │ │ ├── Makefile │ │ ├── cmp.cpp │ │ ├── cmp.h │ │ ├── main.cpp │ │ ├── omb.cpp │ │ └── omb.h ├── decdds │ ├── Makefile │ ├── README │ ├── decdds.c │ ├── decdds.h │ └── main.c └── templates │ ├── README │ ├── mm3ani.bt │ ├── mm3bin.bt │ ├── mm3ccol.bt │ ├── mm3cmp.bt │ ├── mm3occ.bt │ ├── mm3omb.bt │ ├── mm3pak-cell.bt │ ├── mm3pak.bt │ ├── mm3ske.bt │ ├── mm3toc.bt │ └── mm3xbc.bt └── stunts ├── stressed ├── COPYING ├── README ├── resources │ ├── conf │ │ └── defaults.conf │ ├── resources-win32.rc │ ├── resources.qrc │ ├── shape │ │ ├── icon_pattern_glass.png │ │ ├── icon_pattern_glass_inverse.png │ │ ├── icon_pattern_grate.png │ │ ├── icon_pattern_grille.png │ │ ├── icon_pattern_grille_inverse.png │ │ ├── icon_pattern_transparent.png │ │ └── materials.mtl │ ├── stressed-icon.ico │ └── stressed-icon.svg ├── src │ ├── animation │ │ ├── animation.pro │ │ ├── animationresource.cpp │ │ ├── animationresource.h │ │ └── animationresource.ui │ ├── app │ │ ├── app.pro │ │ ├── main.cpp │ │ ├── mainwindow.cpp │ │ ├── mainwindow.h │ │ ├── mainwindow.ui │ │ ├── resource.cpp │ │ ├── resource.h │ │ ├── resourcesmodel.cpp │ │ ├── resourcesmodel.h │ │ ├── settings.cpp │ │ ├── settings.h │ │ ├── stunpack.c │ │ └── stunpack.h │ ├── bitmap │ │ ├── bitmap.pro │ │ ├── bitmapresource.cpp │ │ ├── bitmapresource.h │ │ └── bitmapresource.ui │ ├── raw │ │ ├── raw.pro │ │ ├── rawresource.cpp │ │ ├── rawresource.h │ │ └── rawresource.ui │ ├── shape │ │ ├── flagdelegate.cpp │ │ ├── flagdelegate.h │ │ ├── materialdelegate.cpp │ │ ├── materialdelegate.h │ │ ├── materialsmodel.cpp │ │ ├── materialsmodel.h │ │ ├── shape.pro │ │ ├── shapemodel.cpp │ │ ├── shapemodel.h │ │ ├── shaperesource.cpp │ │ ├── shaperesource.h │ │ ├── shaperesource.ui │ │ ├── shapeview.cpp │ │ ├── shapeview.h │ │ ├── typedelegate.cpp │ │ ├── typedelegate.h │ │ ├── types.h │ │ ├── verticesmodel.cpp │ │ └── verticesmodel.h │ ├── speed │ │ ├── speed.pro │ │ ├── speedresource.cpp │ │ ├── speedresource.h │ │ └── speedresource.ui │ ├── src.pro │ └── text │ │ ├── text.pro │ │ ├── textresource.cpp │ │ ├── textresource.h │ │ └── textresource.ui └── stressed.pro └── stunpack └── README.md /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/README.md -------------------------------------------------------------------------------- /mm3/cityviewer/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/mm3/cityviewer/src/main.cpp -------------------------------------------------------------------------------- /mm3/cityviewer/src/pak.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/mm3/cityviewer/src/pak.cpp -------------------------------------------------------------------------------- /mm3/cityviewer/src/pak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/mm3/cityviewer/src/pak.h -------------------------------------------------------------------------------- /mm3/cityviewer/src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/mm3/cityviewer/src/util.h -------------------------------------------------------------------------------- /mm3/cityviewer/src/xbc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/mm3/cityviewer/src/xbc.cpp -------------------------------------------------------------------------------- /mm3/cityviewer/src/xbc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/mm3/cityviewer/src/xbc.h -------------------------------------------------------------------------------- /mm3/cmpviewer/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/mm3/cmpviewer/src/Makefile -------------------------------------------------------------------------------- /mm3/cmpviewer/src/cmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/mm3/cmpviewer/src/cmp.cpp -------------------------------------------------------------------------------- /mm3/cmpviewer/src/cmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/mm3/cmpviewer/src/cmp.h -------------------------------------------------------------------------------- /mm3/cmpviewer/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/mm3/cmpviewer/src/main.cpp -------------------------------------------------------------------------------- /mm3/cmpviewer/src/omb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/mm3/cmpviewer/src/omb.cpp -------------------------------------------------------------------------------- /mm3/cmpviewer/src/omb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/mm3/cmpviewer/src/omb.h -------------------------------------------------------------------------------- /mm3/decdds/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/mm3/decdds/Makefile -------------------------------------------------------------------------------- /mm3/decdds/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/mm3/decdds/README -------------------------------------------------------------------------------- /mm3/decdds/decdds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/mm3/decdds/decdds.c -------------------------------------------------------------------------------- /mm3/decdds/decdds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/mm3/decdds/decdds.h -------------------------------------------------------------------------------- /mm3/decdds/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/mm3/decdds/main.c -------------------------------------------------------------------------------- /mm3/templates/README: -------------------------------------------------------------------------------- 1 | 010 Editor binary templates for exploring Midtown Madness 3 files. 2 | -------------------------------------------------------------------------------- /mm3/templates/mm3ani.bt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/mm3/templates/mm3ani.bt -------------------------------------------------------------------------------- /mm3/templates/mm3bin.bt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/mm3/templates/mm3bin.bt -------------------------------------------------------------------------------- /mm3/templates/mm3ccol.bt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/mm3/templates/mm3ccol.bt -------------------------------------------------------------------------------- /mm3/templates/mm3cmp.bt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/mm3/templates/mm3cmp.bt -------------------------------------------------------------------------------- /mm3/templates/mm3occ.bt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/mm3/templates/mm3occ.bt -------------------------------------------------------------------------------- /mm3/templates/mm3omb.bt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/mm3/templates/mm3omb.bt -------------------------------------------------------------------------------- /mm3/templates/mm3pak-cell.bt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/mm3/templates/mm3pak-cell.bt -------------------------------------------------------------------------------- /mm3/templates/mm3pak.bt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/mm3/templates/mm3pak.bt -------------------------------------------------------------------------------- /mm3/templates/mm3ske.bt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/mm3/templates/mm3ske.bt -------------------------------------------------------------------------------- /mm3/templates/mm3toc.bt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/mm3/templates/mm3toc.bt -------------------------------------------------------------------------------- /mm3/templates/mm3xbc.bt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/mm3/templates/mm3xbc.bt -------------------------------------------------------------------------------- /stunts/stressed/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/stunts/stressed/COPYING -------------------------------------------------------------------------------- /stunts/stressed/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/stunts/stressed/README -------------------------------------------------------------------------------- /stunts/stressed/resources/conf/defaults.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/stunts/stressed/resources/conf/defaults.conf -------------------------------------------------------------------------------- /stunts/stressed/resources/resources-win32.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/stunts/stressed/resources/resources-win32.rc -------------------------------------------------------------------------------- /stunts/stressed/resources/resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/stunts/stressed/resources/resources.qrc -------------------------------------------------------------------------------- /stunts/stressed/resources/shape/icon_pattern_glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/stunts/stressed/resources/shape/icon_pattern_glass.png -------------------------------------------------------------------------------- /stunts/stressed/resources/shape/icon_pattern_glass_inverse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/stunts/stressed/resources/shape/icon_pattern_glass_inverse.png -------------------------------------------------------------------------------- /stunts/stressed/resources/shape/icon_pattern_grate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/stunts/stressed/resources/shape/icon_pattern_grate.png -------------------------------------------------------------------------------- /stunts/stressed/resources/shape/icon_pattern_grille.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/stunts/stressed/resources/shape/icon_pattern_grille.png -------------------------------------------------------------------------------- /stunts/stressed/resources/shape/icon_pattern_grille_inverse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/stunts/stressed/resources/shape/icon_pattern_grille_inverse.png -------------------------------------------------------------------------------- /stunts/stressed/resources/shape/icon_pattern_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/stunts/stressed/resources/shape/icon_pattern_transparent.png -------------------------------------------------------------------------------- /stunts/stressed/resources/shape/materials.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/stunts/stressed/resources/shape/materials.mtl -------------------------------------------------------------------------------- /stunts/stressed/resources/stressed-icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/stunts/stressed/resources/stressed-icon.ico -------------------------------------------------------------------------------- /stunts/stressed/resources/stressed-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/stunts/stressed/resources/stressed-icon.svg -------------------------------------------------------------------------------- /stunts/stressed/src/animation/animation.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/stunts/stressed/src/animation/animation.pro -------------------------------------------------------------------------------- /stunts/stressed/src/animation/animationresource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/stunts/stressed/src/animation/animationresource.cpp -------------------------------------------------------------------------------- /stunts/stressed/src/animation/animationresource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/stunts/stressed/src/animation/animationresource.h -------------------------------------------------------------------------------- /stunts/stressed/src/animation/animationresource.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/stunts/stressed/src/animation/animationresource.ui -------------------------------------------------------------------------------- /stunts/stressed/src/app/app.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/stunts/stressed/src/app/app.pro -------------------------------------------------------------------------------- /stunts/stressed/src/app/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/stunts/stressed/src/app/main.cpp -------------------------------------------------------------------------------- /stunts/stressed/src/app/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/stunts/stressed/src/app/mainwindow.cpp -------------------------------------------------------------------------------- /stunts/stressed/src/app/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/stunts/stressed/src/app/mainwindow.h -------------------------------------------------------------------------------- /stunts/stressed/src/app/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/stunts/stressed/src/app/mainwindow.ui -------------------------------------------------------------------------------- /stunts/stressed/src/app/resource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/stunts/stressed/src/app/resource.cpp -------------------------------------------------------------------------------- /stunts/stressed/src/app/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/stunts/stressed/src/app/resource.h -------------------------------------------------------------------------------- /stunts/stressed/src/app/resourcesmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/stunts/stressed/src/app/resourcesmodel.cpp -------------------------------------------------------------------------------- /stunts/stressed/src/app/resourcesmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/stunts/stressed/src/app/resourcesmodel.h -------------------------------------------------------------------------------- /stunts/stressed/src/app/settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/stunts/stressed/src/app/settings.cpp -------------------------------------------------------------------------------- /stunts/stressed/src/app/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/stunts/stressed/src/app/settings.h -------------------------------------------------------------------------------- /stunts/stressed/src/app/stunpack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/stunts/stressed/src/app/stunpack.c -------------------------------------------------------------------------------- /stunts/stressed/src/app/stunpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/stunts/stressed/src/app/stunpack.h -------------------------------------------------------------------------------- /stunts/stressed/src/bitmap/bitmap.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/stunts/stressed/src/bitmap/bitmap.pro -------------------------------------------------------------------------------- /stunts/stressed/src/bitmap/bitmapresource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/stunts/stressed/src/bitmap/bitmapresource.cpp -------------------------------------------------------------------------------- /stunts/stressed/src/bitmap/bitmapresource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/stunts/stressed/src/bitmap/bitmapresource.h -------------------------------------------------------------------------------- /stunts/stressed/src/bitmap/bitmapresource.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/stunts/stressed/src/bitmap/bitmapresource.ui -------------------------------------------------------------------------------- /stunts/stressed/src/raw/raw.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/stunts/stressed/src/raw/raw.pro -------------------------------------------------------------------------------- /stunts/stressed/src/raw/rawresource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/stunts/stressed/src/raw/rawresource.cpp -------------------------------------------------------------------------------- /stunts/stressed/src/raw/rawresource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/stunts/stressed/src/raw/rawresource.h -------------------------------------------------------------------------------- /stunts/stressed/src/raw/rawresource.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/stunts/stressed/src/raw/rawresource.ui -------------------------------------------------------------------------------- /stunts/stressed/src/shape/flagdelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/stunts/stressed/src/shape/flagdelegate.cpp -------------------------------------------------------------------------------- /stunts/stressed/src/shape/flagdelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/stunts/stressed/src/shape/flagdelegate.h -------------------------------------------------------------------------------- /stunts/stressed/src/shape/materialdelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/stunts/stressed/src/shape/materialdelegate.cpp -------------------------------------------------------------------------------- /stunts/stressed/src/shape/materialdelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/stunts/stressed/src/shape/materialdelegate.h -------------------------------------------------------------------------------- /stunts/stressed/src/shape/materialsmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/stunts/stressed/src/shape/materialsmodel.cpp -------------------------------------------------------------------------------- /stunts/stressed/src/shape/materialsmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/stunts/stressed/src/shape/materialsmodel.h -------------------------------------------------------------------------------- /stunts/stressed/src/shape/shape.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/stunts/stressed/src/shape/shape.pro -------------------------------------------------------------------------------- /stunts/stressed/src/shape/shapemodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/stunts/stressed/src/shape/shapemodel.cpp -------------------------------------------------------------------------------- /stunts/stressed/src/shape/shapemodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/stunts/stressed/src/shape/shapemodel.h -------------------------------------------------------------------------------- /stunts/stressed/src/shape/shaperesource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/stunts/stressed/src/shape/shaperesource.cpp -------------------------------------------------------------------------------- /stunts/stressed/src/shape/shaperesource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/stunts/stressed/src/shape/shaperesource.h -------------------------------------------------------------------------------- /stunts/stressed/src/shape/shaperesource.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/stunts/stressed/src/shape/shaperesource.ui -------------------------------------------------------------------------------- /stunts/stressed/src/shape/shapeview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/stunts/stressed/src/shape/shapeview.cpp -------------------------------------------------------------------------------- /stunts/stressed/src/shape/shapeview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/stunts/stressed/src/shape/shapeview.h -------------------------------------------------------------------------------- /stunts/stressed/src/shape/typedelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/stunts/stressed/src/shape/typedelegate.cpp -------------------------------------------------------------------------------- /stunts/stressed/src/shape/typedelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/stunts/stressed/src/shape/typedelegate.h -------------------------------------------------------------------------------- /stunts/stressed/src/shape/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/stunts/stressed/src/shape/types.h -------------------------------------------------------------------------------- /stunts/stressed/src/shape/verticesmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/stunts/stressed/src/shape/verticesmodel.cpp -------------------------------------------------------------------------------- /stunts/stressed/src/shape/verticesmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/stunts/stressed/src/shape/verticesmodel.h -------------------------------------------------------------------------------- /stunts/stressed/src/speed/speed.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/stunts/stressed/src/speed/speed.pro -------------------------------------------------------------------------------- /stunts/stressed/src/speed/speedresource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/stunts/stressed/src/speed/speedresource.cpp -------------------------------------------------------------------------------- /stunts/stressed/src/speed/speedresource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/stunts/stressed/src/speed/speedresource.h -------------------------------------------------------------------------------- /stunts/stressed/src/speed/speedresource.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/stunts/stressed/src/speed/speedresource.ui -------------------------------------------------------------------------------- /stunts/stressed/src/src.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/stunts/stressed/src/src.pro -------------------------------------------------------------------------------- /stunts/stressed/src/text/text.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/stunts/stressed/src/text/text.pro -------------------------------------------------------------------------------- /stunts/stressed/src/text/textresource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/stunts/stressed/src/text/textresource.cpp -------------------------------------------------------------------------------- /stunts/stressed/src/text/textresource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/stunts/stressed/src/text/textresource.h -------------------------------------------------------------------------------- /stunts/stressed/src/text/textresource.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstien/gameformats/HEAD/stunts/stressed/src/text/textresource.ui -------------------------------------------------------------------------------- /stunts/stressed/stressed.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = subdirs 2 | 3 | SUBDIRS = src 4 | -------------------------------------------------------------------------------- /stunts/stunpack/README.md: -------------------------------------------------------------------------------- 1 | → Project moved to https://github.com/dstien/stunpack 2 | --------------------------------------------------------------------------------