├── .gitattributes ├── .gitignore ├── 3DRenderer.cs ├── 3DStuff.cs ├── ASMPatchTemplate ├── v1 │ ├── .gitignore │ ├── Makefile │ ├── README.txt │ ├── arena.s │ ├── arenaoffs.txt │ ├── linker.x │ ├── source │ │ ├── ChangeLevelSettingsExample.cpp │ │ ├── ComplexParticleEffect.s │ │ ├── Helper.cpp │ │ ├── HoverWithTimeLimitExample.cpp │ │ ├── MathsHelper.cpp │ │ ├── MathsHelper.h │ │ ├── MinimapSizeSetter.cpp │ │ ├── PositionAndRotationHelper.cpp │ │ ├── PositionAndRotationHelper.h │ │ ├── PositionAndRotationUpdateExample.cpp │ │ ├── SM64DS.h │ │ ├── atan2.cpp │ │ ├── atan2.h │ │ └── print.s │ └── symbols.x └── v2 │ ├── .gitignore │ ├── Makefile │ ├── README.txt │ ├── linker.x │ ├── source │ ├── Abbreviations.txt │ ├── Collision.h │ ├── E_Goomba_Colored │ │ ├── GoombaColored.cpp │ │ └── GoombaColored.h │ ├── E_Magikoopa │ │ ├── Magikoopa.cpp │ │ └── Magikoopa.h │ ├── E_ShyGuy │ │ ├── ShyGuy.cpp │ │ └── ShyGuy.h │ ├── Event List.txt │ ├── F_DLLoader │ │ └── DLLoader.cpp │ ├── F_ParticleTex │ │ └── ParticleTex.cpp │ ├── L_BlockyBlockLand │ │ ├── BBL_Plank.cpp │ │ ├── BBL_Plank.h │ │ ├── BBL_Tower.cpp │ │ ├── BBL_Tower.h │ │ ├── BlockyBlockSpecifics.cpp │ │ └── BlockyBlockSpecifics.h │ ├── L_BlockyBlockLand2 │ │ ├── BlockyBlock2Specifics.cpp │ │ ├── BlockyBlock2Specifics.h │ │ ├── KnockDownPlank.cpp │ │ ├── KnockDownPlank.h │ │ ├── MegaBlock.cpp │ │ └── MegaBlock.h │ ├── L_YoshiBeautifulGarden │ │ ├── AlcoveGrate.cpp │ │ ├── AlcoveGrate.h │ │ ├── CorkRock.cpp │ │ ├── CorkRock.h │ │ ├── ExtraLava.cpp │ │ ├── ExtraLava.h │ │ ├── FallingRock.cpp │ │ ├── FallingRock.h │ │ ├── Flood.cpp │ │ ├── Flood.h │ │ ├── Garden.cpp │ │ ├── Garden.h │ │ ├── PushPipe.cpp │ │ ├── PushPipe.h │ │ ├── SewerBlock.cpp │ │ ├── SewerBlock.h │ │ ├── SewerClog.cpp │ │ ├── SewerClog.h │ │ ├── Spill.cpp │ │ ├── Spill.h │ │ ├── Sprinkler.cpp │ │ ├── Sprinkler.h │ │ ├── YBGSpecifics.cpp │ │ └── YBGSpecifics.h │ ├── Level.h │ ├── M_YoshiRide │ │ ├── YoshiRide.cpp │ │ └── YoshiRide.h │ ├── Message.h │ ├── Model.h │ ├── N_YoshiNPC │ │ ├── YoshiNPC.cpp │ │ └── YoshiNPC.h │ ├── O_Berry │ │ ├── Berry.cpp │ │ └── Berry.h │ ├── O_LaunchStar │ │ ├── LaunchStar.cpp │ │ └── LaunchStar.h │ ├── O_Spawner_SuperMushroom │ │ ├── SuperMushroomSpawner.cpp │ │ └── SuperMushroomSpawner.h │ ├── O_TreasureChest │ │ ├── TreasureChest.cpp │ │ └── TreasureChest.h │ ├── P_DoorBlocker │ │ ├── DoorBlocker.cpp │ │ └── DoorBlocker.h │ ├── P_Pipe_VariableHeight │ │ ├── KnockOverPipe.cpp │ │ └── KnockOverPipe.h │ ├── P_Thwomp │ │ ├── Thwomp.cpp │ │ └── Thwomp.h │ ├── P_ToxBox │ │ ├── ToxBox.cpp │ │ └── ToxBox.h │ ├── Particle.h │ ├── Random Notes.txt │ ├── SM64DS_2.h │ ├── SM64DS_Common.h │ ├── Sound.h │ ├── T_Enemy │ │ ├── ShyGuy.cpp │ │ └── ShyGuy.h │ └── T_Platform │ │ ├── Platform.cpp │ │ ├── Platform.h │ │ ├── PushPipe.cpp │ │ ├── PushPipe.h │ │ ├── Sprinkler.cpp │ │ └── Sprinkler.h │ └── symbols.x ├── AdditionalPatchesForm.Designer.cs ├── AdditionalPatchesForm.cs ├── AdditionalPatchesForm.resources ├── AdditionalPatchesForm.resx ├── AnimationEditorForm.Designer.cs ├── AnimationEditorForm.cs ├── AnimationEditorForm.resources ├── AnimationEditorForm.resx ├── BasicBigFloat.cs ├── BiDictionaryOneToOne.cs ├── CLPS_Form.Designer.cs ├── CLPS_Form.cs ├── CLPS_Form.resources ├── CLPS_Form.resx ├── COPYING ├── CodeCompilerForm.Designer.cs ├── CodeCompilerForm.cs ├── CodeCompilerForm.resx ├── CodeFixerForm.Designer.cs ├── CodeFixerForm.cs ├── CodeFixerForm.resx ├── Compression.cs ├── DataHelper.cs ├── Documentation ├── SM64DS Level Format Doc v2.1x.txt ├── SM64DS Level Format Doc v2.3.2.txt ├── SM64DS Text Editing.txt ├── bca_format.txt ├── bmd_format.txt ├── btp_format.txt └── kcl_format.txt ├── ExceptionMessageBox.Designer.cs ├── ExceptionMessageBox.cs ├── ExceptionMessageBox.resx ├── FormControls ├── BackgroundImageDataGridView.cs ├── CollapseExpandButton.cs ├── ColourPickerButton.cs ├── MenuButton.cs ├── ModelGLControl.cs ├── PaletteColourGrid.cs └── SelectionHighlightGLControl.cs ├── HaxxGLControl ├── HaxxGLControl.cs ├── HaxxGLControl.csproj ├── HaxxGLControl.sln ├── HaxxGLControl.suo ├── Properties │ └── AssemblyInfo.cs └── obj │ ├── Debug │ ├── HaxxGLControl.csproj.FileListAbsolute.txt │ ├── HerpaDerp.csproj.FileListAbsolute.txt │ └── build.force │ └── Release │ ├── HaxxGLControl.csproj.FileListAbsolute.txt │ ├── HaxxGLControl.dll │ ├── HaxxGLControl.pdb │ ├── HerpaDerp.csproj.FileListAbsolute.txt │ ├── Refactor │ └── HerpaDerp.dll │ └── ResolveAssemblyReference.cache ├── Helper.cs ├── Images ├── 1zm1hxc.png ├── Coins.png ├── DPad.png ├── DS_Glyphs.png ├── Pause.png ├── Play.png ├── Small │ ├── Coins.png │ ├── DPad.png │ ├── StarEmpty.png │ ├── StarFull.png │ ├── btnA.png │ ├── btnB.png │ ├── btnL.png │ ├── btnR.png │ ├── btnX.png │ └── btnY.png ├── StarEmpty.png ├── StarFull.png ├── Stop.png ├── ae17ki.png ├── btnA.png ├── btnB.png ├── btnL.png ├── btnR.png ├── btnX.png ├── btnY.png ├── collapseButton.png └── expandButton.png ├── ImportExport ├── BMDImporter.cs ├── BMD_BCA_KCLExporter.cs ├── KCLImporter.cs ├── LevelImportExport │ ├── LevelDataXML_Exporter.cs │ ├── LevelDataXML_Importer.cs │ ├── LevelExporterV1.cs │ ├── LevelExporterV2.cs │ ├── LevelImporterV1.cs │ └── LevelImporterV2.cs ├── Loaders │ ├── AbstractModelLoader.cs │ ├── ExternalLoaders │ │ ├── DAELoader.cs │ │ ├── NITROIntermediateCharacterAnimationLoader.cs │ │ ├── NITROIntermediateModelDataLoader.cs │ │ ├── OBJLoader.cs │ │ └── collada_schema_1_4.cs │ └── InternalLoaders │ │ ├── BCALoader.cs │ │ ├── BMDLoader.cs │ │ └── KCLLoader.cs ├── ModelBase.cs ├── TriangleStripper.cs └── Writers │ ├── AbstractModelWriter.cs │ ├── ExternalWriters │ ├── DAEWriter.cs │ └── OBJWriter.cs │ └── InternalWriters │ ├── BCAWriter.cs │ ├── BMDWriter.cs │ └── KCLWriter.cs ├── ImportImage4BPP.Designer.cs ├── ImportImage4BPP.cs ├── ImportImage4BPP.resx ├── KCLCache.cs ├── KCLEditorForm.Designer.cs ├── KCLEditorForm.cs ├── KCLEditorForm.resources ├── KCLEditorForm.resx ├── Level.cs ├── LevelDisplaySettingsForm.Designer.cs ├── LevelDisplaySettingsForm.cs ├── LevelDisplaySettingsForm.resx ├── LevelEditorForm.Designer.cs ├── LevelEditorForm.EditingHandler.cs ├── LevelEditorForm.cs ├── LevelEditorForm.resources ├── LevelEditorForm.resx ├── LevelObject.cs ├── LevelSettingsForm.Designer.cs ├── LevelSettingsForm.cs ├── LevelSettingsForm.resources ├── LevelSettingsForm.resx ├── MainForm.Designer.cs ├── MainForm.cs ├── MainForm.resources ├── MainForm.resx ├── MinimapEditor.Designer.cs ├── MinimapEditor.cs ├── MinimapEditor.resources ├── MinimapEditor.resx ├── ModelAndCollisionMapEditor.Designer.cs ├── ModelAndCollisionMapEditor.cs ├── ModelAndCollisionMapEditor.resx ├── ModelCache.cs ├── ModelImporter.Designer.cs ├── ModelImporter.cs ├── ModelImporter.resources ├── ModelImporter.resx ├── NARC.cs ├── NARCFile.cs ├── NitroFile.cs ├── NitroOverlay.cs ├── NitroROM.cs ├── NitroROM_patch.cs ├── ObjInfoDump.cs ├── ObjectDatabase.cs ├── ObjectListForm.Designer.cs ├── ObjectListForm.cs ├── ObjectListForm.resources ├── ObjectListForm.resx ├── ObjectProperties.cs ├── ObjectRenderer.cs ├── OffsetAllObjectCoordsForm.Designer.cs ├── OffsetAllObjectCoordsForm.cs ├── OffsetAllObjectCoordsForm.resx ├── ParameterField.cs ├── Patcher ├── PatchCompiler.cs └── PatchMaker.cs ├── Program.cs ├── ProgressDialog.Designer.cs ├── ProgressDialog.cs ├── ProgressDialog.resources ├── ProgressDialog.resx ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── PropertyBag.cs ├── ROMFileSelect.Designer.cs ├── ROMFileSelect.cs ├── ROMFileSelect.resources ├── ROMFileSelect.resx ├── SDATInfoEditor.Designer.cs ├── SDATInfoEditor.cs ├── SDATInfoEditor.resx ├── SM64DSFormats ├── BCA.cs ├── BMD.NitroTexture.cs ├── BMD.cs ├── BTP.cs ├── KCL.cs ├── SBNK.cs ├── SDAT.cs └── SWAR.cs ├── SM64DSe.csproj ├── SM64DSe.csproj.user ├── SM64DSe.pidb ├── SM64DSe.sln ├── SM64DSe.suo ├── SM64DSe.userprefs ├── SettingsForm.Designer.cs ├── SettingsForm.cs ├── SettingsForm.resources ├── SettingsForm.resx ├── SoundViewForm.Designer.cs ├── SoundViewForm.cs ├── SoundViewForm.resx ├── Strings.cs ├── TempHaxForm.resources ├── Templates ├── CommonTemplate.cs ├── PlatformTemplateForm.Designer.cs ├── PlatformTemplateForm.cs └── PlatformTemplateForm.resx ├── TextDialogue.cs ├── TextDialogue.designer.cs ├── TextEditorForm.Designer.cs ├── TextEditorForm.cs ├── TextEditorForm.resources ├── TextEditorForm.resx ├── TextureAnimationForm.Designer.cs ├── TextureAnimationForm.cs ├── TextureAnimationForm.resources ├── TextureAnimationForm.resx ├── TextureEditorForm.Designer.cs ├── TextureEditorForm.cs ├── TextureEditorForm.resources ├── TextureEditorForm.resx ├── TriangleUtil.cs ├── UshortEditorForm.Designer.cs ├── UshortEditorForm.cs ├── UshortEditorForm.resx ├── app.config ├── app.ico ├── bin └── Release │ ├── AdditionalPatches.xml │ ├── License.SharpDX.txt │ ├── NAudio.dll │ ├── OpenTK.Compatibility.dll │ ├── OpenTK.GLControl.dll │ ├── OpenTK.dll │ ├── QuickGraph.Data.dll │ ├── QuickGraph.Graphviz.dll │ ├── QuickGraph.Serialization.dll │ ├── QuickGraph.dll │ ├── SM64DSe.exe │ ├── SM64DSe.exe.config │ ├── SM64DSe.pdb │ ├── SM64DSe.vshost.exe │ ├── SM64DSe.vshost.exe.config │ ├── SM64DSe.vshost.exe.manifest │ ├── Templates │ ├── Enemy.cpp │ ├── Enemy.h │ ├── Platform.cpp │ └── Platform.h │ ├── basic_eur_us_chars.txt │ ├── extended_ascii.txt │ ├── jap_chars.txt │ ├── obj_list.txt │ ├── objectdb.xml │ └── objinfo.php ├── dynamic_library_loader.bin ├── level_ovl_init_EUR.000.bin ├── level_ovl_init_EUR.001.bin ├── level_ovl_init_JAP.bin ├── level_ovl_init_USAv1.bin ├── level_ovl_init_USAv2.bin ├── obj_list.txt └── static_overlay_loader.bin /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/.gitignore -------------------------------------------------------------------------------- /3DRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/3DRenderer.cs -------------------------------------------------------------------------------- /3DStuff.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/3DStuff.cs -------------------------------------------------------------------------------- /ASMPatchTemplate/v1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v1/.gitignore -------------------------------------------------------------------------------- /ASMPatchTemplate/v1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v1/Makefile -------------------------------------------------------------------------------- /ASMPatchTemplate/v1/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v1/README.txt -------------------------------------------------------------------------------- /ASMPatchTemplate/v1/arena.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v1/arena.s -------------------------------------------------------------------------------- /ASMPatchTemplate/v1/arenaoffs.txt: -------------------------------------------------------------------------------- 1 | 02058DE0 -------------------------------------------------------------------------------- /ASMPatchTemplate/v1/linker.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v1/linker.x -------------------------------------------------------------------------------- /ASMPatchTemplate/v1/source/ChangeLevelSettingsExample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v1/source/ChangeLevelSettingsExample.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v1/source/ComplexParticleEffect.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v1/source/ComplexParticleEffect.s -------------------------------------------------------------------------------- /ASMPatchTemplate/v1/source/Helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v1/source/Helper.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v1/source/HoverWithTimeLimitExample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v1/source/HoverWithTimeLimitExample.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v1/source/MathsHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v1/source/MathsHelper.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v1/source/MathsHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v1/source/MathsHelper.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v1/source/MinimapSizeSetter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v1/source/MinimapSizeSetter.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v1/source/PositionAndRotationHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v1/source/PositionAndRotationHelper.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v1/source/PositionAndRotationHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v1/source/PositionAndRotationHelper.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v1/source/PositionAndRotationUpdateExample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v1/source/PositionAndRotationUpdateExample.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v1/source/SM64DS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v1/source/SM64DS.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v1/source/atan2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v1/source/atan2.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v1/source/atan2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v1/source/atan2.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v1/source/print.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v1/source/print.s -------------------------------------------------------------------------------- /ASMPatchTemplate/v1/symbols.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v1/symbols.x -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/.gitignore -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/Makefile -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/README.txt -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/linker.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/linker.x -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/Abbreviations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/source/Abbreviations.txt -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/Collision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/source/Collision.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/E_Goomba_Colored/GoombaColored.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/source/E_Goomba_Colored/GoombaColored.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/E_Goomba_Colored/GoombaColored.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/source/E_Goomba_Colored/GoombaColored.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/E_Magikoopa/Magikoopa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/source/E_Magikoopa/Magikoopa.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/E_Magikoopa/Magikoopa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/source/E_Magikoopa/Magikoopa.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/E_ShyGuy/ShyGuy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/source/E_ShyGuy/ShyGuy.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/E_ShyGuy/ShyGuy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/source/E_ShyGuy/ShyGuy.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/Event List.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/source/Event List.txt -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/F_DLLoader/DLLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/source/F_DLLoader/DLLoader.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/F_ParticleTex/ParticleTex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/source/F_ParticleTex/ParticleTex.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/L_BlockyBlockLand/BBL_Plank.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/source/L_BlockyBlockLand/BBL_Plank.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/L_BlockyBlockLand/BBL_Plank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/source/L_BlockyBlockLand/BBL_Plank.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/L_BlockyBlockLand/BBL_Tower.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/source/L_BlockyBlockLand/BBL_Tower.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/L_BlockyBlockLand/BBL_Tower.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/source/L_BlockyBlockLand/BBL_Tower.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/L_BlockyBlockLand/BlockyBlockSpecifics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/source/L_BlockyBlockLand/BlockyBlockSpecifics.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/L_BlockyBlockLand/BlockyBlockSpecifics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/source/L_BlockyBlockLand/BlockyBlockSpecifics.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/L_BlockyBlockLand2/BlockyBlock2Specifics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/source/L_BlockyBlockLand2/BlockyBlock2Specifics.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/L_BlockyBlockLand2/BlockyBlock2Specifics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/source/L_BlockyBlockLand2/BlockyBlock2Specifics.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/L_BlockyBlockLand2/KnockDownPlank.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/source/L_BlockyBlockLand2/KnockDownPlank.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/L_BlockyBlockLand2/KnockDownPlank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/source/L_BlockyBlockLand2/KnockDownPlank.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/L_BlockyBlockLand2/MegaBlock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/source/L_BlockyBlockLand2/MegaBlock.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/L_BlockyBlockLand2/MegaBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/source/L_BlockyBlockLand2/MegaBlock.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/AlcoveGrate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/AlcoveGrate.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/AlcoveGrate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/AlcoveGrate.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/CorkRock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/CorkRock.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/CorkRock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/CorkRock.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/ExtraLava.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/ExtraLava.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/ExtraLava.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/ExtraLava.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/FallingRock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/FallingRock.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/FallingRock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/FallingRock.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/Flood.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/Flood.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/Flood.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/Flood.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/Garden.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/Garden.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/Garden.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/Garden.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/PushPipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/PushPipe.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/PushPipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/PushPipe.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/SewerBlock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/SewerBlock.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/SewerBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/SewerBlock.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/SewerClog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/SewerClog.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/SewerClog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/SewerClog.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/Spill.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/Spill.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/Spill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/Spill.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/Sprinkler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/Sprinkler.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/Sprinkler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/Sprinkler.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/YBGSpecifics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/YBGSpecifics.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/YBGSpecifics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/YBGSpecifics.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/Level.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/source/Level.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/M_YoshiRide/YoshiRide.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/source/M_YoshiRide/YoshiRide.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/M_YoshiRide/YoshiRide.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/source/M_YoshiRide/YoshiRide.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/Message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/source/Message.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/Model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/source/Model.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/N_YoshiNPC/YoshiNPC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/source/N_YoshiNPC/YoshiNPC.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/N_YoshiNPC/YoshiNPC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/source/N_YoshiNPC/YoshiNPC.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/O_Berry/Berry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/source/O_Berry/Berry.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/O_Berry/Berry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/source/O_Berry/Berry.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/O_LaunchStar/LaunchStar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/source/O_LaunchStar/LaunchStar.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/O_LaunchStar/LaunchStar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/source/O_LaunchStar/LaunchStar.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/O_Spawner_SuperMushroom/SuperMushroomSpawner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/source/O_Spawner_SuperMushroom/SuperMushroomSpawner.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/O_Spawner_SuperMushroom/SuperMushroomSpawner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/source/O_Spawner_SuperMushroom/SuperMushroomSpawner.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/O_TreasureChest/TreasureChest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/source/O_TreasureChest/TreasureChest.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/O_TreasureChest/TreasureChest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/source/O_TreasureChest/TreasureChest.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/P_DoorBlocker/DoorBlocker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/source/P_DoorBlocker/DoorBlocker.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/P_DoorBlocker/DoorBlocker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/source/P_DoorBlocker/DoorBlocker.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/P_Pipe_VariableHeight/KnockOverPipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/source/P_Pipe_VariableHeight/KnockOverPipe.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/P_Pipe_VariableHeight/KnockOverPipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/source/P_Pipe_VariableHeight/KnockOverPipe.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/P_Thwomp/Thwomp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/source/P_Thwomp/Thwomp.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/P_Thwomp/Thwomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/source/P_Thwomp/Thwomp.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/P_ToxBox/ToxBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/source/P_ToxBox/ToxBox.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/P_ToxBox/ToxBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/source/P_ToxBox/ToxBox.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/Particle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/source/Particle.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/Random Notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/source/Random Notes.txt -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/SM64DS_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/source/SM64DS_2.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/SM64DS_Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/source/SM64DS_Common.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/Sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/source/Sound.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/T_Enemy/ShyGuy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/source/T_Enemy/ShyGuy.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/T_Enemy/ShyGuy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/source/T_Enemy/ShyGuy.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/T_Platform/Platform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/source/T_Platform/Platform.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/T_Platform/Platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/source/T_Platform/Platform.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/T_Platform/PushPipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/source/T_Platform/PushPipe.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/T_Platform/PushPipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/source/T_Platform/PushPipe.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/T_Platform/Sprinkler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/source/T_Platform/Sprinkler.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/T_Platform/Sprinkler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/source/T_Platform/Sprinkler.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/symbols.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ASMPatchTemplate/v2/symbols.x -------------------------------------------------------------------------------- /AdditionalPatchesForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/AdditionalPatchesForm.Designer.cs -------------------------------------------------------------------------------- /AdditionalPatchesForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/AdditionalPatchesForm.cs -------------------------------------------------------------------------------- /AdditionalPatchesForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/AdditionalPatchesForm.resources -------------------------------------------------------------------------------- /AdditionalPatchesForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/AdditionalPatchesForm.resx -------------------------------------------------------------------------------- /AnimationEditorForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/AnimationEditorForm.Designer.cs -------------------------------------------------------------------------------- /AnimationEditorForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/AnimationEditorForm.cs -------------------------------------------------------------------------------- /AnimationEditorForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/AnimationEditorForm.resources -------------------------------------------------------------------------------- /AnimationEditorForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/AnimationEditorForm.resx -------------------------------------------------------------------------------- /BasicBigFloat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/BasicBigFloat.cs -------------------------------------------------------------------------------- /BiDictionaryOneToOne.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/BiDictionaryOneToOne.cs -------------------------------------------------------------------------------- /CLPS_Form.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/CLPS_Form.Designer.cs -------------------------------------------------------------------------------- /CLPS_Form.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/CLPS_Form.cs -------------------------------------------------------------------------------- /CLPS_Form.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/CLPS_Form.resources -------------------------------------------------------------------------------- /CLPS_Form.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/CLPS_Form.resx -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/COPYING -------------------------------------------------------------------------------- /CodeCompilerForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/CodeCompilerForm.Designer.cs -------------------------------------------------------------------------------- /CodeCompilerForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/CodeCompilerForm.cs -------------------------------------------------------------------------------- /CodeCompilerForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/CodeCompilerForm.resx -------------------------------------------------------------------------------- /CodeFixerForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/CodeFixerForm.Designer.cs -------------------------------------------------------------------------------- /CodeFixerForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/CodeFixerForm.cs -------------------------------------------------------------------------------- /CodeFixerForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/CodeFixerForm.resx -------------------------------------------------------------------------------- /Compression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/Compression.cs -------------------------------------------------------------------------------- /DataHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/DataHelper.cs -------------------------------------------------------------------------------- /Documentation/SM64DS Level Format Doc v2.1x.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/Documentation/SM64DS Level Format Doc v2.1x.txt -------------------------------------------------------------------------------- /Documentation/SM64DS Level Format Doc v2.3.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/Documentation/SM64DS Level Format Doc v2.3.2.txt -------------------------------------------------------------------------------- /Documentation/SM64DS Text Editing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/Documentation/SM64DS Text Editing.txt -------------------------------------------------------------------------------- /Documentation/bca_format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/Documentation/bca_format.txt -------------------------------------------------------------------------------- /Documentation/bmd_format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/Documentation/bmd_format.txt -------------------------------------------------------------------------------- /Documentation/btp_format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/Documentation/btp_format.txt -------------------------------------------------------------------------------- /Documentation/kcl_format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/Documentation/kcl_format.txt -------------------------------------------------------------------------------- /ExceptionMessageBox.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ExceptionMessageBox.Designer.cs -------------------------------------------------------------------------------- /ExceptionMessageBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ExceptionMessageBox.cs -------------------------------------------------------------------------------- /ExceptionMessageBox.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ExceptionMessageBox.resx -------------------------------------------------------------------------------- /FormControls/BackgroundImageDataGridView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/FormControls/BackgroundImageDataGridView.cs -------------------------------------------------------------------------------- /FormControls/CollapseExpandButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/FormControls/CollapseExpandButton.cs -------------------------------------------------------------------------------- /FormControls/ColourPickerButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/FormControls/ColourPickerButton.cs -------------------------------------------------------------------------------- /FormControls/MenuButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/FormControls/MenuButton.cs -------------------------------------------------------------------------------- /FormControls/ModelGLControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/FormControls/ModelGLControl.cs -------------------------------------------------------------------------------- /FormControls/PaletteColourGrid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/FormControls/PaletteColourGrid.cs -------------------------------------------------------------------------------- /FormControls/SelectionHighlightGLControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/FormControls/SelectionHighlightGLControl.cs -------------------------------------------------------------------------------- /HaxxGLControl/HaxxGLControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/HaxxGLControl/HaxxGLControl.cs -------------------------------------------------------------------------------- /HaxxGLControl/HaxxGLControl.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/HaxxGLControl/HaxxGLControl.csproj -------------------------------------------------------------------------------- /HaxxGLControl/HaxxGLControl.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/HaxxGLControl/HaxxGLControl.sln -------------------------------------------------------------------------------- /HaxxGLControl/HaxxGLControl.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/HaxxGLControl/HaxxGLControl.suo -------------------------------------------------------------------------------- /HaxxGLControl/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/HaxxGLControl/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /HaxxGLControl/obj/Debug/HaxxGLControl.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/HaxxGLControl/obj/Debug/HaxxGLControl.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /HaxxGLControl/obj/Debug/HerpaDerp.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/HaxxGLControl/obj/Debug/HerpaDerp.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /HaxxGLControl/obj/Debug/build.force: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /HaxxGLControl/obj/Release/HaxxGLControl.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/HaxxGLControl/obj/Release/HaxxGLControl.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /HaxxGLControl/obj/Release/HaxxGLControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/HaxxGLControl/obj/Release/HaxxGLControl.dll -------------------------------------------------------------------------------- /HaxxGLControl/obj/Release/HaxxGLControl.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/HaxxGLControl/obj/Release/HaxxGLControl.pdb -------------------------------------------------------------------------------- /HaxxGLControl/obj/Release/HerpaDerp.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/HaxxGLControl/obj/Release/HerpaDerp.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /HaxxGLControl/obj/Release/Refactor/HerpaDerp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/HaxxGLControl/obj/Release/Refactor/HerpaDerp.dll -------------------------------------------------------------------------------- /HaxxGLControl/obj/Release/ResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/HaxxGLControl/obj/Release/ResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/Helper.cs -------------------------------------------------------------------------------- /Images/1zm1hxc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/Images/1zm1hxc.png -------------------------------------------------------------------------------- /Images/Coins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/Images/Coins.png -------------------------------------------------------------------------------- /Images/DPad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/Images/DPad.png -------------------------------------------------------------------------------- /Images/DS_Glyphs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/Images/DS_Glyphs.png -------------------------------------------------------------------------------- /Images/Pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/Images/Pause.png -------------------------------------------------------------------------------- /Images/Play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/Images/Play.png -------------------------------------------------------------------------------- /Images/Small/Coins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/Images/Small/Coins.png -------------------------------------------------------------------------------- /Images/Small/DPad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/Images/Small/DPad.png -------------------------------------------------------------------------------- /Images/Small/StarEmpty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/Images/Small/StarEmpty.png -------------------------------------------------------------------------------- /Images/Small/StarFull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/Images/Small/StarFull.png -------------------------------------------------------------------------------- /Images/Small/btnA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/Images/Small/btnA.png -------------------------------------------------------------------------------- /Images/Small/btnB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/Images/Small/btnB.png -------------------------------------------------------------------------------- /Images/Small/btnL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/Images/Small/btnL.png -------------------------------------------------------------------------------- /Images/Small/btnR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/Images/Small/btnR.png -------------------------------------------------------------------------------- /Images/Small/btnX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/Images/Small/btnX.png -------------------------------------------------------------------------------- /Images/Small/btnY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/Images/Small/btnY.png -------------------------------------------------------------------------------- /Images/StarEmpty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/Images/StarEmpty.png -------------------------------------------------------------------------------- /Images/StarFull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/Images/StarFull.png -------------------------------------------------------------------------------- /Images/Stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/Images/Stop.png -------------------------------------------------------------------------------- /Images/ae17ki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/Images/ae17ki.png -------------------------------------------------------------------------------- /Images/btnA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/Images/btnA.png -------------------------------------------------------------------------------- /Images/btnB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/Images/btnB.png -------------------------------------------------------------------------------- /Images/btnL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/Images/btnL.png -------------------------------------------------------------------------------- /Images/btnR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/Images/btnR.png -------------------------------------------------------------------------------- /Images/btnX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/Images/btnX.png -------------------------------------------------------------------------------- /Images/btnY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/Images/btnY.png -------------------------------------------------------------------------------- /Images/collapseButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/Images/collapseButton.png -------------------------------------------------------------------------------- /Images/expandButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/Images/expandButton.png -------------------------------------------------------------------------------- /ImportExport/BMDImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ImportExport/BMDImporter.cs -------------------------------------------------------------------------------- /ImportExport/BMD_BCA_KCLExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ImportExport/BMD_BCA_KCLExporter.cs -------------------------------------------------------------------------------- /ImportExport/KCLImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ImportExport/KCLImporter.cs -------------------------------------------------------------------------------- /ImportExport/LevelImportExport/LevelDataXML_Exporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ImportExport/LevelImportExport/LevelDataXML_Exporter.cs -------------------------------------------------------------------------------- /ImportExport/LevelImportExport/LevelDataXML_Importer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ImportExport/LevelImportExport/LevelDataXML_Importer.cs -------------------------------------------------------------------------------- /ImportExport/LevelImportExport/LevelExporterV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ImportExport/LevelImportExport/LevelExporterV1.cs -------------------------------------------------------------------------------- /ImportExport/LevelImportExport/LevelExporterV2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ImportExport/LevelImportExport/LevelExporterV2.cs -------------------------------------------------------------------------------- /ImportExport/LevelImportExport/LevelImporterV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ImportExport/LevelImportExport/LevelImporterV1.cs -------------------------------------------------------------------------------- /ImportExport/LevelImportExport/LevelImporterV2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ImportExport/LevelImportExport/LevelImporterV2.cs -------------------------------------------------------------------------------- /ImportExport/Loaders/AbstractModelLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ImportExport/Loaders/AbstractModelLoader.cs -------------------------------------------------------------------------------- /ImportExport/Loaders/ExternalLoaders/DAELoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ImportExport/Loaders/ExternalLoaders/DAELoader.cs -------------------------------------------------------------------------------- /ImportExport/Loaders/ExternalLoaders/NITROIntermediateCharacterAnimationLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ImportExport/Loaders/ExternalLoaders/NITROIntermediateCharacterAnimationLoader.cs -------------------------------------------------------------------------------- /ImportExport/Loaders/ExternalLoaders/NITROIntermediateModelDataLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ImportExport/Loaders/ExternalLoaders/NITROIntermediateModelDataLoader.cs -------------------------------------------------------------------------------- /ImportExport/Loaders/ExternalLoaders/OBJLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ImportExport/Loaders/ExternalLoaders/OBJLoader.cs -------------------------------------------------------------------------------- /ImportExport/Loaders/ExternalLoaders/collada_schema_1_4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ImportExport/Loaders/ExternalLoaders/collada_schema_1_4.cs -------------------------------------------------------------------------------- /ImportExport/Loaders/InternalLoaders/BCALoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ImportExport/Loaders/InternalLoaders/BCALoader.cs -------------------------------------------------------------------------------- /ImportExport/Loaders/InternalLoaders/BMDLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ImportExport/Loaders/InternalLoaders/BMDLoader.cs -------------------------------------------------------------------------------- /ImportExport/Loaders/InternalLoaders/KCLLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ImportExport/Loaders/InternalLoaders/KCLLoader.cs -------------------------------------------------------------------------------- /ImportExport/ModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ImportExport/ModelBase.cs -------------------------------------------------------------------------------- /ImportExport/TriangleStripper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ImportExport/TriangleStripper.cs -------------------------------------------------------------------------------- /ImportExport/Writers/AbstractModelWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ImportExport/Writers/AbstractModelWriter.cs -------------------------------------------------------------------------------- /ImportExport/Writers/ExternalWriters/DAEWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ImportExport/Writers/ExternalWriters/DAEWriter.cs -------------------------------------------------------------------------------- /ImportExport/Writers/ExternalWriters/OBJWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ImportExport/Writers/ExternalWriters/OBJWriter.cs -------------------------------------------------------------------------------- /ImportExport/Writers/InternalWriters/BCAWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ImportExport/Writers/InternalWriters/BCAWriter.cs -------------------------------------------------------------------------------- /ImportExport/Writers/InternalWriters/BMDWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ImportExport/Writers/InternalWriters/BMDWriter.cs -------------------------------------------------------------------------------- /ImportExport/Writers/InternalWriters/KCLWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ImportExport/Writers/InternalWriters/KCLWriter.cs -------------------------------------------------------------------------------- /ImportImage4BPP.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ImportImage4BPP.Designer.cs -------------------------------------------------------------------------------- /ImportImage4BPP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ImportImage4BPP.cs -------------------------------------------------------------------------------- /ImportImage4BPP.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ImportImage4BPP.resx -------------------------------------------------------------------------------- /KCLCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/KCLCache.cs -------------------------------------------------------------------------------- /KCLEditorForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/KCLEditorForm.Designer.cs -------------------------------------------------------------------------------- /KCLEditorForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/KCLEditorForm.cs -------------------------------------------------------------------------------- /KCLEditorForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/KCLEditorForm.resources -------------------------------------------------------------------------------- /KCLEditorForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/KCLEditorForm.resx -------------------------------------------------------------------------------- /Level.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/Level.cs -------------------------------------------------------------------------------- /LevelDisplaySettingsForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/LevelDisplaySettingsForm.Designer.cs -------------------------------------------------------------------------------- /LevelDisplaySettingsForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/LevelDisplaySettingsForm.cs -------------------------------------------------------------------------------- /LevelDisplaySettingsForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/LevelDisplaySettingsForm.resx -------------------------------------------------------------------------------- /LevelEditorForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/LevelEditorForm.Designer.cs -------------------------------------------------------------------------------- /LevelEditorForm.EditingHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/LevelEditorForm.EditingHandler.cs -------------------------------------------------------------------------------- /LevelEditorForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/LevelEditorForm.cs -------------------------------------------------------------------------------- /LevelEditorForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/LevelEditorForm.resources -------------------------------------------------------------------------------- /LevelEditorForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/LevelEditorForm.resx -------------------------------------------------------------------------------- /LevelObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/LevelObject.cs -------------------------------------------------------------------------------- /LevelSettingsForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/LevelSettingsForm.Designer.cs -------------------------------------------------------------------------------- /LevelSettingsForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/LevelSettingsForm.cs -------------------------------------------------------------------------------- /LevelSettingsForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/LevelSettingsForm.resources -------------------------------------------------------------------------------- /LevelSettingsForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/LevelSettingsForm.resx -------------------------------------------------------------------------------- /MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/MainForm.Designer.cs -------------------------------------------------------------------------------- /MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/MainForm.cs -------------------------------------------------------------------------------- /MainForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/MainForm.resources -------------------------------------------------------------------------------- /MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/MainForm.resx -------------------------------------------------------------------------------- /MinimapEditor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/MinimapEditor.Designer.cs -------------------------------------------------------------------------------- /MinimapEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/MinimapEditor.cs -------------------------------------------------------------------------------- /MinimapEditor.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/MinimapEditor.resources -------------------------------------------------------------------------------- /MinimapEditor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/MinimapEditor.resx -------------------------------------------------------------------------------- /ModelAndCollisionMapEditor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ModelAndCollisionMapEditor.Designer.cs -------------------------------------------------------------------------------- /ModelAndCollisionMapEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ModelAndCollisionMapEditor.cs -------------------------------------------------------------------------------- /ModelAndCollisionMapEditor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ModelAndCollisionMapEditor.resx -------------------------------------------------------------------------------- /ModelCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ModelCache.cs -------------------------------------------------------------------------------- /ModelImporter.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ModelImporter.Designer.cs -------------------------------------------------------------------------------- /ModelImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ModelImporter.cs -------------------------------------------------------------------------------- /ModelImporter.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ModelImporter.resources -------------------------------------------------------------------------------- /ModelImporter.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ModelImporter.resx -------------------------------------------------------------------------------- /NARC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/NARC.cs -------------------------------------------------------------------------------- /NARCFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/NARCFile.cs -------------------------------------------------------------------------------- /NitroFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/NitroFile.cs -------------------------------------------------------------------------------- /NitroOverlay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/NitroOverlay.cs -------------------------------------------------------------------------------- /NitroROM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/NitroROM.cs -------------------------------------------------------------------------------- /NitroROM_patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/NitroROM_patch.cs -------------------------------------------------------------------------------- /ObjInfoDump.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ObjInfoDump.cs -------------------------------------------------------------------------------- /ObjectDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ObjectDatabase.cs -------------------------------------------------------------------------------- /ObjectListForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ObjectListForm.Designer.cs -------------------------------------------------------------------------------- /ObjectListForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ObjectListForm.cs -------------------------------------------------------------------------------- /ObjectListForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ObjectListForm.resources -------------------------------------------------------------------------------- /ObjectListForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ObjectListForm.resx -------------------------------------------------------------------------------- /ObjectProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ObjectProperties.cs -------------------------------------------------------------------------------- /ObjectRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ObjectRenderer.cs -------------------------------------------------------------------------------- /OffsetAllObjectCoordsForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/OffsetAllObjectCoordsForm.Designer.cs -------------------------------------------------------------------------------- /OffsetAllObjectCoordsForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/OffsetAllObjectCoordsForm.cs -------------------------------------------------------------------------------- /OffsetAllObjectCoordsForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/OffsetAllObjectCoordsForm.resx -------------------------------------------------------------------------------- /ParameterField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ParameterField.cs -------------------------------------------------------------------------------- /Patcher/PatchCompiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/Patcher/PatchCompiler.cs -------------------------------------------------------------------------------- /Patcher/PatchMaker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/Patcher/PatchMaker.cs -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/Program.cs -------------------------------------------------------------------------------- /ProgressDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ProgressDialog.Designer.cs -------------------------------------------------------------------------------- /ProgressDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ProgressDialog.cs -------------------------------------------------------------------------------- /ProgressDialog.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ProgressDialog.resources -------------------------------------------------------------------------------- /ProgressDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ProgressDialog.resx -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/Properties/Resources.resx -------------------------------------------------------------------------------- /Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/Properties/Settings.settings -------------------------------------------------------------------------------- /PropertyBag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/PropertyBag.cs -------------------------------------------------------------------------------- /ROMFileSelect.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ROMFileSelect.Designer.cs -------------------------------------------------------------------------------- /ROMFileSelect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ROMFileSelect.cs -------------------------------------------------------------------------------- /ROMFileSelect.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ROMFileSelect.resources -------------------------------------------------------------------------------- /ROMFileSelect.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/ROMFileSelect.resx -------------------------------------------------------------------------------- /SDATInfoEditor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/SDATInfoEditor.Designer.cs -------------------------------------------------------------------------------- /SDATInfoEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/SDATInfoEditor.cs -------------------------------------------------------------------------------- /SDATInfoEditor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/SDATInfoEditor.resx -------------------------------------------------------------------------------- /SM64DSFormats/BCA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/SM64DSFormats/BCA.cs -------------------------------------------------------------------------------- /SM64DSFormats/BMD.NitroTexture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/SM64DSFormats/BMD.NitroTexture.cs -------------------------------------------------------------------------------- /SM64DSFormats/BMD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/SM64DSFormats/BMD.cs -------------------------------------------------------------------------------- /SM64DSFormats/BTP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/SM64DSFormats/BTP.cs -------------------------------------------------------------------------------- /SM64DSFormats/KCL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/SM64DSFormats/KCL.cs -------------------------------------------------------------------------------- /SM64DSFormats/SBNK.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/SM64DSFormats/SBNK.cs -------------------------------------------------------------------------------- /SM64DSFormats/SDAT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/SM64DSFormats/SDAT.cs -------------------------------------------------------------------------------- /SM64DSFormats/SWAR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/SM64DSFormats/SWAR.cs -------------------------------------------------------------------------------- /SM64DSe.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/SM64DSe.csproj -------------------------------------------------------------------------------- /SM64DSe.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/SM64DSe.csproj.user -------------------------------------------------------------------------------- /SM64DSe.pidb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/SM64DSe.pidb -------------------------------------------------------------------------------- /SM64DSe.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/SM64DSe.sln -------------------------------------------------------------------------------- /SM64DSe.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/SM64DSe.suo -------------------------------------------------------------------------------- /SM64DSe.userprefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/SM64DSe.userprefs -------------------------------------------------------------------------------- /SettingsForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/SettingsForm.Designer.cs -------------------------------------------------------------------------------- /SettingsForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/SettingsForm.cs -------------------------------------------------------------------------------- /SettingsForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/SettingsForm.resources -------------------------------------------------------------------------------- /SettingsForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/SettingsForm.resx -------------------------------------------------------------------------------- /SoundViewForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/SoundViewForm.Designer.cs -------------------------------------------------------------------------------- /SoundViewForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/SoundViewForm.cs -------------------------------------------------------------------------------- /SoundViewForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/SoundViewForm.resx -------------------------------------------------------------------------------- /Strings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/Strings.cs -------------------------------------------------------------------------------- /TempHaxForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/TempHaxForm.resources -------------------------------------------------------------------------------- /Templates/CommonTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/Templates/CommonTemplate.cs -------------------------------------------------------------------------------- /Templates/PlatformTemplateForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/Templates/PlatformTemplateForm.Designer.cs -------------------------------------------------------------------------------- /Templates/PlatformTemplateForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/Templates/PlatformTemplateForm.cs -------------------------------------------------------------------------------- /Templates/PlatformTemplateForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/Templates/PlatformTemplateForm.resx -------------------------------------------------------------------------------- /TextDialogue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/TextDialogue.cs -------------------------------------------------------------------------------- /TextDialogue.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/TextDialogue.designer.cs -------------------------------------------------------------------------------- /TextEditorForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/TextEditorForm.Designer.cs -------------------------------------------------------------------------------- /TextEditorForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/TextEditorForm.cs -------------------------------------------------------------------------------- /TextEditorForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/TextEditorForm.resources -------------------------------------------------------------------------------- /TextEditorForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/TextEditorForm.resx -------------------------------------------------------------------------------- /TextureAnimationForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/TextureAnimationForm.Designer.cs -------------------------------------------------------------------------------- /TextureAnimationForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/TextureAnimationForm.cs -------------------------------------------------------------------------------- /TextureAnimationForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/TextureAnimationForm.resources -------------------------------------------------------------------------------- /TextureAnimationForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/TextureAnimationForm.resx -------------------------------------------------------------------------------- /TextureEditorForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/TextureEditorForm.Designer.cs -------------------------------------------------------------------------------- /TextureEditorForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/TextureEditorForm.cs -------------------------------------------------------------------------------- /TextureEditorForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/TextureEditorForm.resources -------------------------------------------------------------------------------- /TextureEditorForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/TextureEditorForm.resx -------------------------------------------------------------------------------- /TriangleUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/TriangleUtil.cs -------------------------------------------------------------------------------- /UshortEditorForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/UshortEditorForm.Designer.cs -------------------------------------------------------------------------------- /UshortEditorForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/UshortEditorForm.cs -------------------------------------------------------------------------------- /UshortEditorForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/UshortEditorForm.resx -------------------------------------------------------------------------------- /app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/app.config -------------------------------------------------------------------------------- /app.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/app.ico -------------------------------------------------------------------------------- /bin/Release/AdditionalPatches.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/bin/Release/AdditionalPatches.xml -------------------------------------------------------------------------------- /bin/Release/License.SharpDX.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/bin/Release/License.SharpDX.txt -------------------------------------------------------------------------------- /bin/Release/NAudio.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/bin/Release/NAudio.dll -------------------------------------------------------------------------------- /bin/Release/OpenTK.Compatibility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/bin/Release/OpenTK.Compatibility.dll -------------------------------------------------------------------------------- /bin/Release/OpenTK.GLControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/bin/Release/OpenTK.GLControl.dll -------------------------------------------------------------------------------- /bin/Release/OpenTK.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/bin/Release/OpenTK.dll -------------------------------------------------------------------------------- /bin/Release/QuickGraph.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/bin/Release/QuickGraph.Data.dll -------------------------------------------------------------------------------- /bin/Release/QuickGraph.Graphviz.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/bin/Release/QuickGraph.Graphviz.dll -------------------------------------------------------------------------------- /bin/Release/QuickGraph.Serialization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/bin/Release/QuickGraph.Serialization.dll -------------------------------------------------------------------------------- /bin/Release/QuickGraph.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/bin/Release/QuickGraph.dll -------------------------------------------------------------------------------- /bin/Release/SM64DSe.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/bin/Release/SM64DSe.exe -------------------------------------------------------------------------------- /bin/Release/SM64DSe.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/bin/Release/SM64DSe.exe.config -------------------------------------------------------------------------------- /bin/Release/SM64DSe.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/bin/Release/SM64DSe.pdb -------------------------------------------------------------------------------- /bin/Release/SM64DSe.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/bin/Release/SM64DSe.vshost.exe -------------------------------------------------------------------------------- /bin/Release/SM64DSe.vshost.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/bin/Release/SM64DSe.vshost.exe.config -------------------------------------------------------------------------------- /bin/Release/SM64DSe.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/bin/Release/SM64DSe.vshost.exe.manifest -------------------------------------------------------------------------------- /bin/Release/Templates/Enemy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/bin/Release/Templates/Enemy.cpp -------------------------------------------------------------------------------- /bin/Release/Templates/Enemy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/bin/Release/Templates/Enemy.h -------------------------------------------------------------------------------- /bin/Release/Templates/Platform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/bin/Release/Templates/Platform.cpp -------------------------------------------------------------------------------- /bin/Release/Templates/Platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/bin/Release/Templates/Platform.h -------------------------------------------------------------------------------- /bin/Release/basic_eur_us_chars.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/bin/Release/basic_eur_us_chars.txt -------------------------------------------------------------------------------- /bin/Release/extended_ascii.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/bin/Release/extended_ascii.txt -------------------------------------------------------------------------------- /bin/Release/jap_chars.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/bin/Release/jap_chars.txt -------------------------------------------------------------------------------- /bin/Release/obj_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/bin/Release/obj_list.txt -------------------------------------------------------------------------------- /bin/Release/objectdb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/bin/Release/objectdb.xml -------------------------------------------------------------------------------- /bin/Release/objinfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/bin/Release/objinfo.php -------------------------------------------------------------------------------- /dynamic_library_loader.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/dynamic_library_loader.bin -------------------------------------------------------------------------------- /level_ovl_init_EUR.000.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/level_ovl_init_EUR.000.bin -------------------------------------------------------------------------------- /level_ovl_init_EUR.001.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/level_ovl_init_EUR.001.bin -------------------------------------------------------------------------------- /level_ovl_init_JAP.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/level_ovl_init_JAP.bin -------------------------------------------------------------------------------- /level_ovl_init_USAv1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/level_ovl_init_USAv1.bin -------------------------------------------------------------------------------- /level_ovl_init_USAv2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/level_ovl_init_USAv2.bin -------------------------------------------------------------------------------- /obj_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/obj_list.txt -------------------------------------------------------------------------------- /static_overlay_loader.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/SM64DSe/HEAD/static_overlay_loader.bin --------------------------------------------------------------------------------