├── .github └── workflows │ └── release.yaml ├── .gitignore ├── 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 ├── COPYING ├── Documentation ├── SM64DS Level Format Doc v2.1x.txt ├── SM64DS Level Format Doc v2.3.2.txt ├── SM64DS Text Editing.txt ├── SP2.md ├── bca_format.txt ├── bmd_format.txt ├── btp_format.txt └── kcl_format.txt ├── Properties ├── AssemblyCodeSource.cs ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── README.md ├── SM64DSe.csproj ├── SM64DSe.csproj.user ├── SM64DSe.pidb ├── SM64DSe.sln ├── SM64DSe.suo ├── app.config ├── app.ico ├── assets ├── AdditionalPatches.xml ├── DLLs │ ├── NAudio.dll │ ├── OpenTK.Compatibility.dll │ ├── OpenTK.GLControl.dll │ ├── OpenTK.dll │ ├── QuickGraph.Data.dll │ ├── QuickGraph.Graphviz.dll │ ├── QuickGraph.Serialization.dll │ ├── QuickGraph.dll │ └── Xceed.Wpf.AvalonDock.dll ├── Images │ ├── 1zm1hxc.png │ ├── Coins.png │ ├── DPad.png │ ├── DS_Glyphs.png │ ├── DummyTex.png │ ├── KuppaScript.ico │ ├── 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 │ │ ├── folder.png │ │ └── github.png │ ├── StarEmpty.png │ ├── StarFull.png │ ├── Stop.png │ ├── Thumbs.db │ ├── ae17ki.png │ ├── brick.png │ ├── btnA.png │ ├── btnB.png │ ├── btnL.png │ ├── btnR.png │ ├── btnX.png │ ├── btnY.png │ ├── build.png │ ├── cloud.png │ ├── collapseButton.png │ ├── question.png │ ├── stepLeft.png │ └── stepRight.png ├── addons.json ├── basic_eur_us_chars.txt ├── dynamic_library_loader.bin ├── extended_ascii.txt ├── external-tools │ ├── Ndst.exe │ └── ninja.exe ├── jap_chars.txt ├── kuppaLib.kpl ├── 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 ├── levels.xml ├── obj_list.txt ├── objectdb.xml └── static_overlay_loader.bin ├── packages.config └── src ├── core ├── 3DRenderer.cs ├── 3DStuff.cs ├── BasicBigFloat.cs ├── BiDictionaryOneToOne.cs ├── Compression.cs ├── ConsoleUtils.cs ├── DataHelper.cs ├── Helper.cs ├── ImportExport │ ├── BMDImporter.cs │ ├── BMD_BCA_KCLExporter.cs │ ├── BaseStripConverter.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 │ ├── QuadsToStripsConverter.cs │ ├── TrianglesToStripsConverter.cs │ └── Writers │ │ ├── AbstractModelWriter.cs │ │ ├── ExternalWriters │ │ ├── DAEWriter.cs │ │ └── OBJWriter.cs │ │ └── InternalWriters │ │ ├── BCAWriter.cs │ │ ├── BMDWriter.cs │ │ └── KCLWriter.cs ├── KCLCache.cs ├── KuppaScript │ ├── KuppaLib.cs │ ├── KuppaScript.cs │ └── NumberInterpreter.cs ├── Level.cs ├── LevelEditorForm.EditingHandler.cs ├── LevelObject.cs ├── ModelCache.cs ├── NARC.cs ├── NARCFile.cs ├── Ndst │ ├── Banner.cs │ ├── ConversionInfo.cs │ ├── ExtractOptions.cs │ ├── Filesystem.cs │ ├── Fix20x12i.cs │ ├── Fix4x12i.cs │ ├── Formats │ │ ├── Bmd.cs │ │ ├── Enpg.cs │ │ ├── GenericFile.cs │ │ ├── IFormat.cs │ │ ├── Kcl.cs │ │ ├── LZ.cs │ │ ├── Narc.cs │ │ └── Nsmbd.cs │ ├── Graphics │ │ ├── CIE.cs │ │ ├── Graphic.cs │ │ ├── GraphicExtractOption.cs │ │ ├── Palette.cs │ │ ├── RGB5.cs │ │ └── Screen.cs │ ├── Helper.cs │ ├── Models │ │ ├── Bone.cs │ │ ├── Face.cs │ │ ├── Formats │ │ │ ├── IModelFormat.cs │ │ │ └── Obj.cs │ │ ├── Mat4.cs │ │ ├── Mesh.cs │ │ ├── Model.cs │ │ ├── Node.cs │ │ └── Vec3.cs │ ├── Ninja.cs │ ├── Overlay.cs │ └── ROM.cs ├── NitroFile.cs ├── NitroOverlay.cs ├── NitroROM.cs ├── NitroROM_Utils.cs ├── NitroROM_patch.cs ├── ObjInfoDump.cs ├── ObjectDatabase.cs ├── ObjectProperties.cs ├── ObjectRenderer.cs ├── ParameterField.cs ├── Particle.cs ├── ParticleSysDefProperties.cs ├── Patcher │ ├── Arm9BinSection.cs │ ├── Arm9BinaryHandler.cs │ ├── FileHeaderGenerator.cs │ ├── PatchCompiler.cs │ ├── PatchMaker.cs │ └── SoundHeaderGenerator.cs ├── Program.cs ├── PropertyBag.cs ├── Strings.cs ├── TriangleUtil.cs ├── cli │ ├── CLIService.cs │ ├── CLIWorker.cs │ ├── options │ │ ├── AbstractFileOptions.cs │ │ ├── AbstractRomOptions.cs │ │ ├── BatchesOptions.cs │ │ ├── CompileOptions.cs │ │ ├── FileSystemOptions.cs │ │ ├── GenerateOptions.cs │ │ ├── InsertDLsOptions.cs │ │ └── PatchOptions.cs │ ├── utils │ │ ├── Copy.cs │ │ ├── FileInserter.cs │ │ ├── RomUriUtils.cs │ │ └── TargetParser.cs │ └── workers │ │ ├── Batches.cs │ │ ├── Compiler.cs │ │ ├── DLsInserter.cs │ │ ├── FileSystem.cs │ │ ├── Generator.cs │ │ └── Patcher.cs ├── formats │ ├── BCA.cs │ ├── BMD.NitroTexture.cs │ ├── BMD.cs │ ├── BTP.cs │ ├── DynamicLibraryManager.cs │ ├── Graphic.cs │ ├── KCL.cs │ ├── NeuQuant.cs │ ├── SBNK.cs │ ├── SDAT.cs │ └── SWAR.cs ├── managers │ └── AddonsManager.cs ├── updater │ └── Updater.cs └── utils │ ├── DynamicLibraries │ └── DLUtils.cs │ ├── Github │ └── GitHubHelper.cs │ └── SP2 │ ├── CommandInfo.cs │ ├── Env.cs │ └── SP2Patcher.cs ├── ui ├── AdditionalPatchesForm.Designer.cs ├── AdditionalPatchesForm.cs ├── AdditionalPatchesForm.resources ├── AdditionalPatchesForm.resx ├── AnimationEditorForm.Designer.cs ├── AnimationEditorForm.cs ├── AnimationEditorForm.resources ├── AnimationEditorForm.resx ├── BMD KLC Editor.Designer.cs ├── BMD KLC Editor.cs ├── BMD KLC Editor.resx ├── CLPS_Form.Designer.cs ├── CLPS_Form.cs ├── CLPS_Form.resources ├── CLPS_Form.resx ├── CodeCompilerForm.Designer.cs ├── CodeCompilerForm.cs ├── CodeCompilerForm.resx ├── CodeFixerForm.Designer.cs ├── CodeFixerForm.cs ├── CodeFixerForm.resx ├── ExceptionMessageBox.Designer.cs ├── ExceptionMessageBox.cs ├── ExceptionMessageBox.resx ├── FileSystemEditorForm.cs ├── FormControls │ ├── BackgroundImageDataGridView.cs │ ├── MenuButton.cs │ ├── ModelGLControl.cs │ └── PaletteColourGrid.cs ├── FormationForm.Designer.cs ├── FormationForm.cs ├── FormationForm.resx ├── GraphicEditor.Designer.cs ├── GraphicEditor.cs ├── GraphicEditor.resx ├── ImportImage4BPP.Designer.cs ├── ImportImage4BPP.cs ├── ImportImage4BPP.resx ├── KCLEditorForm.Designer.cs ├── KCLEditorForm.cs ├── KCLEditorForm.resources ├── KCLEditorForm.resx ├── KuppaScriptEditor.Designer.cs ├── KuppaScriptEditor.cs ├── KuppaScriptEditor.resx ├── LevelDisplaySettingsForm.Designer.cs ├── LevelDisplaySettingsForm.cs ├── LevelDisplaySettingsForm.resx ├── LevelEditorForm.Designer.cs ├── LevelEditorForm.cs ├── LevelEditorForm.resources ├── LevelEditorForm.resx ├── LevelNameEditorForm.Designer.cs ├── LevelNameEditorForm.cs ├── LevelNameEditorForm.resx ├── 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 ├── ModelImporter.Designer.cs ├── ModelImporter.cs ├── ModelImporter.resources ├── ModelImporter.resx ├── ObjectListForm.Designer.cs ├── ObjectListForm.cs ├── ObjectListForm.resources ├── ObjectListForm.resx ├── OffsetAllObjectCoordsForm.Designer.cs ├── OffsetAllObjectCoordsForm.cs ├── OffsetAllObjectCoordsForm.resx ├── OverlayEditor.Designer.cs ├── OverlayEditor.cs ├── OverlayEditor.resx ├── ParticleEditorForm.Designer.cs ├── ParticleEditorForm.cs ├── ParticleEditorForm.resx ├── ParticleTextureForm.Designer.cs ├── ParticleTextureForm.cs ├── ParticleTextureForm.resx ├── ParticleViewerForm.Designer.cs ├── ParticleViewerForm.cs ├── ParticleViewerForm.resx ├── PatchViewerForm.Designer.cs ├── PatchViewerForm.cs ├── PlanetCameraSettingsForm.Designer.cs ├── PlanetCameraSettingsForm.cs ├── PlanetCameraSettingsForm.resources ├── PlanetCameraSettingsForm.resx ├── ProgressDialog.Designer.cs ├── ProgressDialog.cs ├── ProgressDialog.resources ├── ProgressDialog.resx ├── ROMFileSelect.Designer.cs ├── ROMFileSelect.cs ├── ROMFileSelect.resources ├── ROMFileSelect.resx ├── SDATInfoEditor.Designer.cs ├── SDATInfoEditor.cs ├── SDATInfoEditor.resx ├── SettingsForm.Designer.cs ├── SettingsForm.cs ├── SettingsForm.resources ├── SettingsForm.resx ├── SoundViewForm.Designer.cs ├── SoundViewForm.cs ├── SoundViewForm.resx ├── TempHaxForm.resources ├── TextDialog.cs ├── 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 ├── UshortEditorForm.Designer.cs ├── UshortEditorForm.cs ├── UshortEditorForm.resx ├── animations │ ├── CreateNewLevelAnimationDialog.Designer.cs │ ├── CreateNewLevelAnimationDialog.cs │ └── CreateNewLevelAnimationDialog.resx ├── dialogs │ ├── DropdownDialog.Designer.cs │ ├── DropdownDialog.cs │ ├── RunningDialog.Designer.cs │ └── RunningDialog.cs ├── dls │ ├── DL Editor.Designer.cs │ ├── DL Editor.cs │ └── DL Editor.resx └── textures │ ├── BetterTextureAnimationEditor.Designer.cs │ ├── BetterTextureAnimationEditor.cs │ └── BetterTextureAnimationEditor.resx └── utils └── Templates ├── CommonTemplate.cs ├── PlatformTemplateForm.Designer.cs ├── PlatformTemplateForm.cs └── PlatformTemplateForm.resx /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/.gitignore -------------------------------------------------------------------------------- /ASMPatchTemplate/v1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v1/.gitignore -------------------------------------------------------------------------------- /ASMPatchTemplate/v1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v1/Makefile -------------------------------------------------------------------------------- /ASMPatchTemplate/v1/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v1/README.txt -------------------------------------------------------------------------------- /ASMPatchTemplate/v1/arena.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v1/arena.s -------------------------------------------------------------------------------- /ASMPatchTemplate/v1/arenaoffs.txt: -------------------------------------------------------------------------------- 1 | 02058DE0 -------------------------------------------------------------------------------- /ASMPatchTemplate/v1/linker.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v1/linker.x -------------------------------------------------------------------------------- /ASMPatchTemplate/v1/source/ChangeLevelSettingsExample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v1/source/ChangeLevelSettingsExample.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v1/source/ComplexParticleEffect.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v1/source/ComplexParticleEffect.s -------------------------------------------------------------------------------- /ASMPatchTemplate/v1/source/Helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v1/source/Helper.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v1/source/HoverWithTimeLimitExample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v1/source/HoverWithTimeLimitExample.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v1/source/MathsHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v1/source/MathsHelper.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v1/source/MathsHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v1/source/MathsHelper.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v1/source/MinimapSizeSetter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v1/source/MinimapSizeSetter.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v1/source/PositionAndRotationHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v1/source/PositionAndRotationHelper.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v1/source/PositionAndRotationHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v1/source/PositionAndRotationHelper.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v1/source/PositionAndRotationUpdateExample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v1/source/PositionAndRotationUpdateExample.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v1/source/SM64DS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v1/source/SM64DS.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v1/source/atan2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v1/source/atan2.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v1/source/atan2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v1/source/atan2.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v1/source/print.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v1/source/print.s -------------------------------------------------------------------------------- /ASMPatchTemplate/v1/symbols.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v1/symbols.x -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/.gitignore -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/Makefile -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/README.txt -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/linker.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/linker.x -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/Abbreviations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/source/Abbreviations.txt -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/Collision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/source/Collision.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/E_Goomba_Colored/GoombaColored.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/source/E_Goomba_Colored/GoombaColored.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/E_Goomba_Colored/GoombaColored.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/source/E_Goomba_Colored/GoombaColored.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/E_Magikoopa/Magikoopa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/source/E_Magikoopa/Magikoopa.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/E_Magikoopa/Magikoopa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/source/E_Magikoopa/Magikoopa.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/E_ShyGuy/ShyGuy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/source/E_ShyGuy/ShyGuy.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/E_ShyGuy/ShyGuy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/source/E_ShyGuy/ShyGuy.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/Event List.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/source/Event List.txt -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/F_DLLoader/DLLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/source/F_DLLoader/DLLoader.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/F_ParticleTex/ParticleTex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/source/F_ParticleTex/ParticleTex.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/L_BlockyBlockLand/BBL_Plank.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/source/L_BlockyBlockLand/BBL_Plank.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/L_BlockyBlockLand/BBL_Plank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/source/L_BlockyBlockLand/BBL_Plank.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/L_BlockyBlockLand/BBL_Tower.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/source/L_BlockyBlockLand/BBL_Tower.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/L_BlockyBlockLand/BBL_Tower.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/source/L_BlockyBlockLand/BBL_Tower.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/L_BlockyBlockLand/BlockyBlockSpecifics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/source/L_BlockyBlockLand/BlockyBlockSpecifics.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/L_BlockyBlockLand/BlockyBlockSpecifics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/source/L_BlockyBlockLand/BlockyBlockSpecifics.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/L_BlockyBlockLand2/BlockyBlock2Specifics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/source/L_BlockyBlockLand2/BlockyBlock2Specifics.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/L_BlockyBlockLand2/BlockyBlock2Specifics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/source/L_BlockyBlockLand2/BlockyBlock2Specifics.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/L_BlockyBlockLand2/KnockDownPlank.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/source/L_BlockyBlockLand2/KnockDownPlank.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/L_BlockyBlockLand2/KnockDownPlank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/source/L_BlockyBlockLand2/KnockDownPlank.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/L_BlockyBlockLand2/MegaBlock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/source/L_BlockyBlockLand2/MegaBlock.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/L_BlockyBlockLand2/MegaBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/source/L_BlockyBlockLand2/MegaBlock.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/AlcoveGrate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/AlcoveGrate.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/AlcoveGrate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/AlcoveGrate.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/CorkRock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/CorkRock.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/CorkRock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/CorkRock.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/ExtraLava.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/ExtraLava.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/ExtraLava.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/ExtraLava.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/FallingRock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/FallingRock.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/FallingRock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/FallingRock.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/Flood.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/Flood.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/Flood.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/Flood.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/Garden.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/Garden.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/Garden.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/Garden.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/PushPipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/PushPipe.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/PushPipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/PushPipe.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/SewerBlock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/SewerBlock.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/SewerBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/SewerBlock.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/SewerClog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/SewerClog.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/SewerClog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/SewerClog.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/Spill.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/Spill.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/Spill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/Spill.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/Sprinkler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/Sprinkler.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/Sprinkler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/Sprinkler.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/YBGSpecifics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/YBGSpecifics.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/YBGSpecifics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/source/L_YoshiBeautifulGarden/YBGSpecifics.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/Level.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/source/Level.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/M_YoshiRide/YoshiRide.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/source/M_YoshiRide/YoshiRide.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/M_YoshiRide/YoshiRide.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/source/M_YoshiRide/YoshiRide.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/Message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/source/Message.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/Model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/source/Model.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/N_YoshiNPC/YoshiNPC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/source/N_YoshiNPC/YoshiNPC.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/N_YoshiNPC/YoshiNPC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/source/N_YoshiNPC/YoshiNPC.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/O_Berry/Berry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/source/O_Berry/Berry.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/O_Berry/Berry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/source/O_Berry/Berry.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/O_LaunchStar/LaunchStar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/source/O_LaunchStar/LaunchStar.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/O_LaunchStar/LaunchStar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/source/O_LaunchStar/LaunchStar.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/O_Spawner_SuperMushroom/SuperMushroomSpawner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/source/O_Spawner_SuperMushroom/SuperMushroomSpawner.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/O_Spawner_SuperMushroom/SuperMushroomSpawner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/source/O_Spawner_SuperMushroom/SuperMushroomSpawner.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/O_TreasureChest/TreasureChest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/source/O_TreasureChest/TreasureChest.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/O_TreasureChest/TreasureChest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/source/O_TreasureChest/TreasureChest.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/P_DoorBlocker/DoorBlocker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/source/P_DoorBlocker/DoorBlocker.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/P_DoorBlocker/DoorBlocker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/source/P_DoorBlocker/DoorBlocker.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/P_Pipe_VariableHeight/KnockOverPipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/source/P_Pipe_VariableHeight/KnockOverPipe.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/P_Pipe_VariableHeight/KnockOverPipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/source/P_Pipe_VariableHeight/KnockOverPipe.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/P_Thwomp/Thwomp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/source/P_Thwomp/Thwomp.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/P_Thwomp/Thwomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/source/P_Thwomp/Thwomp.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/P_ToxBox/ToxBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/source/P_ToxBox/ToxBox.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/P_ToxBox/ToxBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/source/P_ToxBox/ToxBox.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/Particle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/source/Particle.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/Random Notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/source/Random Notes.txt -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/SM64DS_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/source/SM64DS_2.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/SM64DS_Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/source/SM64DS_Common.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/Sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/source/Sound.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/T_Enemy/ShyGuy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/source/T_Enemy/ShyGuy.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/T_Enemy/ShyGuy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/source/T_Enemy/ShyGuy.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/T_Platform/Platform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/source/T_Platform/Platform.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/T_Platform/Platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/source/T_Platform/Platform.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/T_Platform/PushPipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/source/T_Platform/PushPipe.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/T_Platform/PushPipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/source/T_Platform/PushPipe.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/T_Platform/Sprinkler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/source/T_Platform/Sprinkler.cpp -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/source/T_Platform/Sprinkler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/source/T_Platform/Sprinkler.h -------------------------------------------------------------------------------- /ASMPatchTemplate/v2/symbols.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/ASMPatchTemplate/v2/symbols.x -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/COPYING -------------------------------------------------------------------------------- /Documentation/SM64DS Level Format Doc v2.1x.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/Documentation/SM64DS Level Format Doc v2.1x.txt -------------------------------------------------------------------------------- /Documentation/SM64DS Level Format Doc v2.3.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/Documentation/SM64DS Level Format Doc v2.3.2.txt -------------------------------------------------------------------------------- /Documentation/SM64DS Text Editing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/Documentation/SM64DS Text Editing.txt -------------------------------------------------------------------------------- /Documentation/SP2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/Documentation/SP2.md -------------------------------------------------------------------------------- /Documentation/bca_format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/Documentation/bca_format.txt -------------------------------------------------------------------------------- /Documentation/bmd_format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/Documentation/bmd_format.txt -------------------------------------------------------------------------------- /Documentation/btp_format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/Documentation/btp_format.txt -------------------------------------------------------------------------------- /Documentation/kcl_format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/Documentation/kcl_format.txt -------------------------------------------------------------------------------- /Properties/AssemblyCodeSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/Properties/AssemblyCodeSource.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/Properties/Resources.resx -------------------------------------------------------------------------------- /Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/Properties/Settings.settings -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/README.md -------------------------------------------------------------------------------- /SM64DSe.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/SM64DSe.csproj -------------------------------------------------------------------------------- /SM64DSe.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/SM64DSe.csproj.user -------------------------------------------------------------------------------- /SM64DSe.pidb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/SM64DSe.pidb -------------------------------------------------------------------------------- /SM64DSe.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/SM64DSe.sln -------------------------------------------------------------------------------- /SM64DSe.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/SM64DSe.suo -------------------------------------------------------------------------------- /app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/app.config -------------------------------------------------------------------------------- /app.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/app.ico -------------------------------------------------------------------------------- /assets/AdditionalPatches.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/assets/AdditionalPatches.xml -------------------------------------------------------------------------------- /assets/DLLs/NAudio.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/assets/DLLs/NAudio.dll -------------------------------------------------------------------------------- /assets/DLLs/OpenTK.Compatibility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/assets/DLLs/OpenTK.Compatibility.dll -------------------------------------------------------------------------------- /assets/DLLs/OpenTK.GLControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/assets/DLLs/OpenTK.GLControl.dll -------------------------------------------------------------------------------- /assets/DLLs/OpenTK.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/assets/DLLs/OpenTK.dll -------------------------------------------------------------------------------- /assets/DLLs/QuickGraph.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/assets/DLLs/QuickGraph.Data.dll -------------------------------------------------------------------------------- /assets/DLLs/QuickGraph.Graphviz.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/assets/DLLs/QuickGraph.Graphviz.dll -------------------------------------------------------------------------------- /assets/DLLs/QuickGraph.Serialization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/assets/DLLs/QuickGraph.Serialization.dll -------------------------------------------------------------------------------- /assets/DLLs/QuickGraph.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/assets/DLLs/QuickGraph.dll -------------------------------------------------------------------------------- /assets/DLLs/Xceed.Wpf.AvalonDock.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/assets/DLLs/Xceed.Wpf.AvalonDock.dll -------------------------------------------------------------------------------- /assets/Images/1zm1hxc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/assets/Images/1zm1hxc.png -------------------------------------------------------------------------------- /assets/Images/Coins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/assets/Images/Coins.png -------------------------------------------------------------------------------- /assets/Images/DPad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/assets/Images/DPad.png -------------------------------------------------------------------------------- /assets/Images/DS_Glyphs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/assets/Images/DS_Glyphs.png -------------------------------------------------------------------------------- /assets/Images/DummyTex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/assets/Images/DummyTex.png -------------------------------------------------------------------------------- /assets/Images/KuppaScript.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/assets/Images/KuppaScript.ico -------------------------------------------------------------------------------- /assets/Images/Pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/assets/Images/Pause.png -------------------------------------------------------------------------------- /assets/Images/Play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/assets/Images/Play.png -------------------------------------------------------------------------------- /assets/Images/Small/Coins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/assets/Images/Small/Coins.png -------------------------------------------------------------------------------- /assets/Images/Small/DPad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/assets/Images/Small/DPad.png -------------------------------------------------------------------------------- /assets/Images/Small/StarEmpty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/assets/Images/Small/StarEmpty.png -------------------------------------------------------------------------------- /assets/Images/Small/StarFull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/assets/Images/Small/StarFull.png -------------------------------------------------------------------------------- /assets/Images/Small/btnA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/assets/Images/Small/btnA.png -------------------------------------------------------------------------------- /assets/Images/Small/btnB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/assets/Images/Small/btnB.png -------------------------------------------------------------------------------- /assets/Images/Small/btnL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/assets/Images/Small/btnL.png -------------------------------------------------------------------------------- /assets/Images/Small/btnR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/assets/Images/Small/btnR.png -------------------------------------------------------------------------------- /assets/Images/Small/btnX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/assets/Images/Small/btnX.png -------------------------------------------------------------------------------- /assets/Images/Small/btnY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/assets/Images/Small/btnY.png -------------------------------------------------------------------------------- /assets/Images/Small/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/assets/Images/Small/folder.png -------------------------------------------------------------------------------- /assets/Images/Small/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/assets/Images/Small/github.png -------------------------------------------------------------------------------- /assets/Images/StarEmpty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/assets/Images/StarEmpty.png -------------------------------------------------------------------------------- /assets/Images/StarFull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/assets/Images/StarFull.png -------------------------------------------------------------------------------- /assets/Images/Stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/assets/Images/Stop.png -------------------------------------------------------------------------------- /assets/Images/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/assets/Images/Thumbs.db -------------------------------------------------------------------------------- /assets/Images/ae17ki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/assets/Images/ae17ki.png -------------------------------------------------------------------------------- /assets/Images/brick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/assets/Images/brick.png -------------------------------------------------------------------------------- /assets/Images/btnA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/assets/Images/btnA.png -------------------------------------------------------------------------------- /assets/Images/btnB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/assets/Images/btnB.png -------------------------------------------------------------------------------- /assets/Images/btnL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/assets/Images/btnL.png -------------------------------------------------------------------------------- /assets/Images/btnR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/assets/Images/btnR.png -------------------------------------------------------------------------------- /assets/Images/btnX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/assets/Images/btnX.png -------------------------------------------------------------------------------- /assets/Images/btnY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/assets/Images/btnY.png -------------------------------------------------------------------------------- /assets/Images/build.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/assets/Images/build.png -------------------------------------------------------------------------------- /assets/Images/cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/assets/Images/cloud.png -------------------------------------------------------------------------------- /assets/Images/collapseButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/assets/Images/collapseButton.png -------------------------------------------------------------------------------- /assets/Images/question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/assets/Images/question.png -------------------------------------------------------------------------------- /assets/Images/stepLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/assets/Images/stepLeft.png -------------------------------------------------------------------------------- /assets/Images/stepRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/assets/Images/stepRight.png -------------------------------------------------------------------------------- /assets/addons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/assets/addons.json -------------------------------------------------------------------------------- /assets/basic_eur_us_chars.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/assets/basic_eur_us_chars.txt -------------------------------------------------------------------------------- /assets/dynamic_library_loader.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/assets/dynamic_library_loader.bin -------------------------------------------------------------------------------- /assets/extended_ascii.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/assets/extended_ascii.txt -------------------------------------------------------------------------------- /assets/external-tools/Ndst.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/assets/external-tools/Ndst.exe -------------------------------------------------------------------------------- /assets/external-tools/ninja.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/assets/external-tools/ninja.exe -------------------------------------------------------------------------------- /assets/jap_chars.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/assets/jap_chars.txt -------------------------------------------------------------------------------- /assets/kuppaLib.kpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/assets/kuppaLib.kpl -------------------------------------------------------------------------------- /assets/level_ovl_init_EUR.000.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/assets/level_ovl_init_EUR.000.bin -------------------------------------------------------------------------------- /assets/level_ovl_init_EUR.001.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/assets/level_ovl_init_EUR.001.bin -------------------------------------------------------------------------------- /assets/level_ovl_init_JAP.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/assets/level_ovl_init_JAP.bin -------------------------------------------------------------------------------- /assets/level_ovl_init_USAv1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/assets/level_ovl_init_USAv1.bin -------------------------------------------------------------------------------- /assets/level_ovl_init_USAv2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/assets/level_ovl_init_USAv2.bin -------------------------------------------------------------------------------- /assets/levels.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/assets/levels.xml -------------------------------------------------------------------------------- /assets/obj_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/assets/obj_list.txt -------------------------------------------------------------------------------- /assets/objectdb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/assets/objectdb.xml -------------------------------------------------------------------------------- /assets/static_overlay_loader.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/assets/static_overlay_loader.bin -------------------------------------------------------------------------------- /packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/packages.config -------------------------------------------------------------------------------- /src/core/3DRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/3DRenderer.cs -------------------------------------------------------------------------------- /src/core/3DStuff.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/3DStuff.cs -------------------------------------------------------------------------------- /src/core/BasicBigFloat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/BasicBigFloat.cs -------------------------------------------------------------------------------- /src/core/BiDictionaryOneToOne.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/BiDictionaryOneToOne.cs -------------------------------------------------------------------------------- /src/core/Compression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/Compression.cs -------------------------------------------------------------------------------- /src/core/ConsoleUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/ConsoleUtils.cs -------------------------------------------------------------------------------- /src/core/DataHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/DataHelper.cs -------------------------------------------------------------------------------- /src/core/Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/Helper.cs -------------------------------------------------------------------------------- /src/core/ImportExport/BMDImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/ImportExport/BMDImporter.cs -------------------------------------------------------------------------------- /src/core/ImportExport/BMD_BCA_KCLExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/ImportExport/BMD_BCA_KCLExporter.cs -------------------------------------------------------------------------------- /src/core/ImportExport/BaseStripConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/ImportExport/BaseStripConverter.cs -------------------------------------------------------------------------------- /src/core/ImportExport/KCLImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/ImportExport/KCLImporter.cs -------------------------------------------------------------------------------- /src/core/ImportExport/LevelImportExport/LevelDataXML_Exporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/ImportExport/LevelImportExport/LevelDataXML_Exporter.cs -------------------------------------------------------------------------------- /src/core/ImportExport/LevelImportExport/LevelDataXML_Importer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/ImportExport/LevelImportExport/LevelDataXML_Importer.cs -------------------------------------------------------------------------------- /src/core/ImportExport/LevelImportExport/LevelExporterV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/ImportExport/LevelImportExport/LevelExporterV1.cs -------------------------------------------------------------------------------- /src/core/ImportExport/LevelImportExport/LevelExporterV2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/ImportExport/LevelImportExport/LevelExporterV2.cs -------------------------------------------------------------------------------- /src/core/ImportExport/LevelImportExport/LevelImporterV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/ImportExport/LevelImportExport/LevelImporterV1.cs -------------------------------------------------------------------------------- /src/core/ImportExport/LevelImportExport/LevelImporterV2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/ImportExport/LevelImportExport/LevelImporterV2.cs -------------------------------------------------------------------------------- /src/core/ImportExport/Loaders/AbstractModelLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/ImportExport/Loaders/AbstractModelLoader.cs -------------------------------------------------------------------------------- /src/core/ImportExport/Loaders/ExternalLoaders/DAELoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/ImportExport/Loaders/ExternalLoaders/DAELoader.cs -------------------------------------------------------------------------------- /src/core/ImportExport/Loaders/ExternalLoaders/NITROIntermediateCharacterAnimationLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/ImportExport/Loaders/ExternalLoaders/NITROIntermediateCharacterAnimationLoader.cs -------------------------------------------------------------------------------- /src/core/ImportExport/Loaders/ExternalLoaders/NITROIntermediateModelDataLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/ImportExport/Loaders/ExternalLoaders/NITROIntermediateModelDataLoader.cs -------------------------------------------------------------------------------- /src/core/ImportExport/Loaders/ExternalLoaders/OBJLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/ImportExport/Loaders/ExternalLoaders/OBJLoader.cs -------------------------------------------------------------------------------- /src/core/ImportExport/Loaders/ExternalLoaders/collada_schema_1_4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/ImportExport/Loaders/ExternalLoaders/collada_schema_1_4.cs -------------------------------------------------------------------------------- /src/core/ImportExport/Loaders/InternalLoaders/BCALoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/ImportExport/Loaders/InternalLoaders/BCALoader.cs -------------------------------------------------------------------------------- /src/core/ImportExport/Loaders/InternalLoaders/BMDLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/ImportExport/Loaders/InternalLoaders/BMDLoader.cs -------------------------------------------------------------------------------- /src/core/ImportExport/Loaders/InternalLoaders/KCLLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/ImportExport/Loaders/InternalLoaders/KCLLoader.cs -------------------------------------------------------------------------------- /src/core/ImportExport/ModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/ImportExport/ModelBase.cs -------------------------------------------------------------------------------- /src/core/ImportExport/QuadsToStripsConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/ImportExport/QuadsToStripsConverter.cs -------------------------------------------------------------------------------- /src/core/ImportExport/TrianglesToStripsConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/ImportExport/TrianglesToStripsConverter.cs -------------------------------------------------------------------------------- /src/core/ImportExport/Writers/AbstractModelWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/ImportExport/Writers/AbstractModelWriter.cs -------------------------------------------------------------------------------- /src/core/ImportExport/Writers/ExternalWriters/DAEWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/ImportExport/Writers/ExternalWriters/DAEWriter.cs -------------------------------------------------------------------------------- /src/core/ImportExport/Writers/ExternalWriters/OBJWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/ImportExport/Writers/ExternalWriters/OBJWriter.cs -------------------------------------------------------------------------------- /src/core/ImportExport/Writers/InternalWriters/BCAWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/ImportExport/Writers/InternalWriters/BCAWriter.cs -------------------------------------------------------------------------------- /src/core/ImportExport/Writers/InternalWriters/BMDWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/ImportExport/Writers/InternalWriters/BMDWriter.cs -------------------------------------------------------------------------------- /src/core/ImportExport/Writers/InternalWriters/KCLWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/ImportExport/Writers/InternalWriters/KCLWriter.cs -------------------------------------------------------------------------------- /src/core/KCLCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/KCLCache.cs -------------------------------------------------------------------------------- /src/core/KuppaScript/KuppaLib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/KuppaScript/KuppaLib.cs -------------------------------------------------------------------------------- /src/core/KuppaScript/KuppaScript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/KuppaScript/KuppaScript.cs -------------------------------------------------------------------------------- /src/core/KuppaScript/NumberInterpreter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/KuppaScript/NumberInterpreter.cs -------------------------------------------------------------------------------- /src/core/Level.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/Level.cs -------------------------------------------------------------------------------- /src/core/LevelEditorForm.EditingHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/LevelEditorForm.EditingHandler.cs -------------------------------------------------------------------------------- /src/core/LevelObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/LevelObject.cs -------------------------------------------------------------------------------- /src/core/ModelCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/ModelCache.cs -------------------------------------------------------------------------------- /src/core/NARC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/NARC.cs -------------------------------------------------------------------------------- /src/core/NARCFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/NARCFile.cs -------------------------------------------------------------------------------- /src/core/Ndst/Banner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/Ndst/Banner.cs -------------------------------------------------------------------------------- /src/core/Ndst/ConversionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/Ndst/ConversionInfo.cs -------------------------------------------------------------------------------- /src/core/Ndst/ExtractOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/Ndst/ExtractOptions.cs -------------------------------------------------------------------------------- /src/core/Ndst/Filesystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/Ndst/Filesystem.cs -------------------------------------------------------------------------------- /src/core/Ndst/Fix20x12i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/Ndst/Fix20x12i.cs -------------------------------------------------------------------------------- /src/core/Ndst/Fix4x12i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/Ndst/Fix4x12i.cs -------------------------------------------------------------------------------- /src/core/Ndst/Formats/Bmd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/Ndst/Formats/Bmd.cs -------------------------------------------------------------------------------- /src/core/Ndst/Formats/Enpg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/Ndst/Formats/Enpg.cs -------------------------------------------------------------------------------- /src/core/Ndst/Formats/GenericFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/Ndst/Formats/GenericFile.cs -------------------------------------------------------------------------------- /src/core/Ndst/Formats/IFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/Ndst/Formats/IFormat.cs -------------------------------------------------------------------------------- /src/core/Ndst/Formats/Kcl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/Ndst/Formats/Kcl.cs -------------------------------------------------------------------------------- /src/core/Ndst/Formats/LZ.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/Ndst/Formats/LZ.cs -------------------------------------------------------------------------------- /src/core/Ndst/Formats/Narc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/Ndst/Formats/Narc.cs -------------------------------------------------------------------------------- /src/core/Ndst/Formats/Nsmbd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/Ndst/Formats/Nsmbd.cs -------------------------------------------------------------------------------- /src/core/Ndst/Graphics/CIE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/Ndst/Graphics/CIE.cs -------------------------------------------------------------------------------- /src/core/Ndst/Graphics/Graphic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/Ndst/Graphics/Graphic.cs -------------------------------------------------------------------------------- /src/core/Ndst/Graphics/GraphicExtractOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/Ndst/Graphics/GraphicExtractOption.cs -------------------------------------------------------------------------------- /src/core/Ndst/Graphics/Palette.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/Ndst/Graphics/Palette.cs -------------------------------------------------------------------------------- /src/core/Ndst/Graphics/RGB5.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/Ndst/Graphics/RGB5.cs -------------------------------------------------------------------------------- /src/core/Ndst/Graphics/Screen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/Ndst/Graphics/Screen.cs -------------------------------------------------------------------------------- /src/core/Ndst/Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/Ndst/Helper.cs -------------------------------------------------------------------------------- /src/core/Ndst/Models/Bone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/Ndst/Models/Bone.cs -------------------------------------------------------------------------------- /src/core/Ndst/Models/Face.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/Ndst/Models/Face.cs -------------------------------------------------------------------------------- /src/core/Ndst/Models/Formats/IModelFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/Ndst/Models/Formats/IModelFormat.cs -------------------------------------------------------------------------------- /src/core/Ndst/Models/Formats/Obj.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/Ndst/Models/Formats/Obj.cs -------------------------------------------------------------------------------- /src/core/Ndst/Models/Mat4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/Ndst/Models/Mat4.cs -------------------------------------------------------------------------------- /src/core/Ndst/Models/Mesh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/Ndst/Models/Mesh.cs -------------------------------------------------------------------------------- /src/core/Ndst/Models/Model.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/Ndst/Models/Model.cs -------------------------------------------------------------------------------- /src/core/Ndst/Models/Node.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/Ndst/Models/Node.cs -------------------------------------------------------------------------------- /src/core/Ndst/Models/Vec3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/Ndst/Models/Vec3.cs -------------------------------------------------------------------------------- /src/core/Ndst/Ninja.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/Ndst/Ninja.cs -------------------------------------------------------------------------------- /src/core/Ndst/Overlay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/Ndst/Overlay.cs -------------------------------------------------------------------------------- /src/core/Ndst/ROM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/Ndst/ROM.cs -------------------------------------------------------------------------------- /src/core/NitroFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/NitroFile.cs -------------------------------------------------------------------------------- /src/core/NitroOverlay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/NitroOverlay.cs -------------------------------------------------------------------------------- /src/core/NitroROM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/NitroROM.cs -------------------------------------------------------------------------------- /src/core/NitroROM_Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/NitroROM_Utils.cs -------------------------------------------------------------------------------- /src/core/NitroROM_patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/NitroROM_patch.cs -------------------------------------------------------------------------------- /src/core/ObjInfoDump.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/ObjInfoDump.cs -------------------------------------------------------------------------------- /src/core/ObjectDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/ObjectDatabase.cs -------------------------------------------------------------------------------- /src/core/ObjectProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/ObjectProperties.cs -------------------------------------------------------------------------------- /src/core/ObjectRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/ObjectRenderer.cs -------------------------------------------------------------------------------- /src/core/ParameterField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/ParameterField.cs -------------------------------------------------------------------------------- /src/core/Particle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/Particle.cs -------------------------------------------------------------------------------- /src/core/ParticleSysDefProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/ParticleSysDefProperties.cs -------------------------------------------------------------------------------- /src/core/Patcher/Arm9BinSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/Patcher/Arm9BinSection.cs -------------------------------------------------------------------------------- /src/core/Patcher/Arm9BinaryHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/Patcher/Arm9BinaryHandler.cs -------------------------------------------------------------------------------- /src/core/Patcher/FileHeaderGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/Patcher/FileHeaderGenerator.cs -------------------------------------------------------------------------------- /src/core/Patcher/PatchCompiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/Patcher/PatchCompiler.cs -------------------------------------------------------------------------------- /src/core/Patcher/PatchMaker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/Patcher/PatchMaker.cs -------------------------------------------------------------------------------- /src/core/Patcher/SoundHeaderGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/Patcher/SoundHeaderGenerator.cs -------------------------------------------------------------------------------- /src/core/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/Program.cs -------------------------------------------------------------------------------- /src/core/PropertyBag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/PropertyBag.cs -------------------------------------------------------------------------------- /src/core/Strings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/Strings.cs -------------------------------------------------------------------------------- /src/core/TriangleUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/TriangleUtil.cs -------------------------------------------------------------------------------- /src/core/cli/CLIService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/cli/CLIService.cs -------------------------------------------------------------------------------- /src/core/cli/CLIWorker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/cli/CLIWorker.cs -------------------------------------------------------------------------------- /src/core/cli/options/AbstractFileOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/cli/options/AbstractFileOptions.cs -------------------------------------------------------------------------------- /src/core/cli/options/AbstractRomOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/cli/options/AbstractRomOptions.cs -------------------------------------------------------------------------------- /src/core/cli/options/BatchesOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/cli/options/BatchesOptions.cs -------------------------------------------------------------------------------- /src/core/cli/options/CompileOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/cli/options/CompileOptions.cs -------------------------------------------------------------------------------- /src/core/cli/options/FileSystemOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/cli/options/FileSystemOptions.cs -------------------------------------------------------------------------------- /src/core/cli/options/GenerateOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/cli/options/GenerateOptions.cs -------------------------------------------------------------------------------- /src/core/cli/options/InsertDLsOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/cli/options/InsertDLsOptions.cs -------------------------------------------------------------------------------- /src/core/cli/options/PatchOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/cli/options/PatchOptions.cs -------------------------------------------------------------------------------- /src/core/cli/utils/Copy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/cli/utils/Copy.cs -------------------------------------------------------------------------------- /src/core/cli/utils/FileInserter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/cli/utils/FileInserter.cs -------------------------------------------------------------------------------- /src/core/cli/utils/RomUriUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/cli/utils/RomUriUtils.cs -------------------------------------------------------------------------------- /src/core/cli/utils/TargetParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/cli/utils/TargetParser.cs -------------------------------------------------------------------------------- /src/core/cli/workers/Batches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/cli/workers/Batches.cs -------------------------------------------------------------------------------- /src/core/cli/workers/Compiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/cli/workers/Compiler.cs -------------------------------------------------------------------------------- /src/core/cli/workers/DLsInserter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/cli/workers/DLsInserter.cs -------------------------------------------------------------------------------- /src/core/cli/workers/FileSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/cli/workers/FileSystem.cs -------------------------------------------------------------------------------- /src/core/cli/workers/Generator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/cli/workers/Generator.cs -------------------------------------------------------------------------------- /src/core/cli/workers/Patcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/cli/workers/Patcher.cs -------------------------------------------------------------------------------- /src/core/formats/BCA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/formats/BCA.cs -------------------------------------------------------------------------------- /src/core/formats/BMD.NitroTexture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/formats/BMD.NitroTexture.cs -------------------------------------------------------------------------------- /src/core/formats/BMD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/formats/BMD.cs -------------------------------------------------------------------------------- /src/core/formats/BTP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/formats/BTP.cs -------------------------------------------------------------------------------- /src/core/formats/DynamicLibraryManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/formats/DynamicLibraryManager.cs -------------------------------------------------------------------------------- /src/core/formats/Graphic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/formats/Graphic.cs -------------------------------------------------------------------------------- /src/core/formats/KCL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/formats/KCL.cs -------------------------------------------------------------------------------- /src/core/formats/NeuQuant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/formats/NeuQuant.cs -------------------------------------------------------------------------------- /src/core/formats/SBNK.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/formats/SBNK.cs -------------------------------------------------------------------------------- /src/core/formats/SDAT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/formats/SDAT.cs -------------------------------------------------------------------------------- /src/core/formats/SWAR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/formats/SWAR.cs -------------------------------------------------------------------------------- /src/core/managers/AddonsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/managers/AddonsManager.cs -------------------------------------------------------------------------------- /src/core/updater/Updater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/updater/Updater.cs -------------------------------------------------------------------------------- /src/core/utils/DynamicLibraries/DLUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/utils/DynamicLibraries/DLUtils.cs -------------------------------------------------------------------------------- /src/core/utils/Github/GitHubHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/utils/Github/GitHubHelper.cs -------------------------------------------------------------------------------- /src/core/utils/SP2/CommandInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/utils/SP2/CommandInfo.cs -------------------------------------------------------------------------------- /src/core/utils/SP2/Env.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/utils/SP2/Env.cs -------------------------------------------------------------------------------- /src/core/utils/SP2/SP2Patcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/core/utils/SP2/SP2Patcher.cs -------------------------------------------------------------------------------- /src/ui/AdditionalPatchesForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/AdditionalPatchesForm.Designer.cs -------------------------------------------------------------------------------- /src/ui/AdditionalPatchesForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/AdditionalPatchesForm.cs -------------------------------------------------------------------------------- /src/ui/AdditionalPatchesForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/AdditionalPatchesForm.resources -------------------------------------------------------------------------------- /src/ui/AdditionalPatchesForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/AdditionalPatchesForm.resx -------------------------------------------------------------------------------- /src/ui/AnimationEditorForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/AnimationEditorForm.Designer.cs -------------------------------------------------------------------------------- /src/ui/AnimationEditorForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/AnimationEditorForm.cs -------------------------------------------------------------------------------- /src/ui/AnimationEditorForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/AnimationEditorForm.resources -------------------------------------------------------------------------------- /src/ui/AnimationEditorForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/AnimationEditorForm.resx -------------------------------------------------------------------------------- /src/ui/BMD KLC Editor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/BMD KLC Editor.Designer.cs -------------------------------------------------------------------------------- /src/ui/BMD KLC Editor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/BMD KLC Editor.cs -------------------------------------------------------------------------------- /src/ui/BMD KLC Editor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/BMD KLC Editor.resx -------------------------------------------------------------------------------- /src/ui/CLPS_Form.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/CLPS_Form.Designer.cs -------------------------------------------------------------------------------- /src/ui/CLPS_Form.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/CLPS_Form.cs -------------------------------------------------------------------------------- /src/ui/CLPS_Form.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/CLPS_Form.resources -------------------------------------------------------------------------------- /src/ui/CLPS_Form.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/CLPS_Form.resx -------------------------------------------------------------------------------- /src/ui/CodeCompilerForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/CodeCompilerForm.Designer.cs -------------------------------------------------------------------------------- /src/ui/CodeCompilerForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/CodeCompilerForm.cs -------------------------------------------------------------------------------- /src/ui/CodeCompilerForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/CodeCompilerForm.resx -------------------------------------------------------------------------------- /src/ui/CodeFixerForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/CodeFixerForm.Designer.cs -------------------------------------------------------------------------------- /src/ui/CodeFixerForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/CodeFixerForm.cs -------------------------------------------------------------------------------- /src/ui/CodeFixerForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/CodeFixerForm.resx -------------------------------------------------------------------------------- /src/ui/ExceptionMessageBox.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/ExceptionMessageBox.Designer.cs -------------------------------------------------------------------------------- /src/ui/ExceptionMessageBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/ExceptionMessageBox.cs -------------------------------------------------------------------------------- /src/ui/ExceptionMessageBox.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/ExceptionMessageBox.resx -------------------------------------------------------------------------------- /src/ui/FileSystemEditorForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/FileSystemEditorForm.cs -------------------------------------------------------------------------------- /src/ui/FormControls/BackgroundImageDataGridView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/FormControls/BackgroundImageDataGridView.cs -------------------------------------------------------------------------------- /src/ui/FormControls/MenuButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/FormControls/MenuButton.cs -------------------------------------------------------------------------------- /src/ui/FormControls/ModelGLControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/FormControls/ModelGLControl.cs -------------------------------------------------------------------------------- /src/ui/FormControls/PaletteColourGrid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/FormControls/PaletteColourGrid.cs -------------------------------------------------------------------------------- /src/ui/FormationForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/FormationForm.Designer.cs -------------------------------------------------------------------------------- /src/ui/FormationForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/FormationForm.cs -------------------------------------------------------------------------------- /src/ui/FormationForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/FormationForm.resx -------------------------------------------------------------------------------- /src/ui/GraphicEditor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/GraphicEditor.Designer.cs -------------------------------------------------------------------------------- /src/ui/GraphicEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/GraphicEditor.cs -------------------------------------------------------------------------------- /src/ui/GraphicEditor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/GraphicEditor.resx -------------------------------------------------------------------------------- /src/ui/ImportImage4BPP.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/ImportImage4BPP.Designer.cs -------------------------------------------------------------------------------- /src/ui/ImportImage4BPP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/ImportImage4BPP.cs -------------------------------------------------------------------------------- /src/ui/ImportImage4BPP.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/ImportImage4BPP.resx -------------------------------------------------------------------------------- /src/ui/KCLEditorForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/KCLEditorForm.Designer.cs -------------------------------------------------------------------------------- /src/ui/KCLEditorForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/KCLEditorForm.cs -------------------------------------------------------------------------------- /src/ui/KCLEditorForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/KCLEditorForm.resources -------------------------------------------------------------------------------- /src/ui/KCLEditorForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/KCLEditorForm.resx -------------------------------------------------------------------------------- /src/ui/KuppaScriptEditor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/KuppaScriptEditor.Designer.cs -------------------------------------------------------------------------------- /src/ui/KuppaScriptEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/KuppaScriptEditor.cs -------------------------------------------------------------------------------- /src/ui/KuppaScriptEditor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/KuppaScriptEditor.resx -------------------------------------------------------------------------------- /src/ui/LevelDisplaySettingsForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/LevelDisplaySettingsForm.Designer.cs -------------------------------------------------------------------------------- /src/ui/LevelDisplaySettingsForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/LevelDisplaySettingsForm.cs -------------------------------------------------------------------------------- /src/ui/LevelDisplaySettingsForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/LevelDisplaySettingsForm.resx -------------------------------------------------------------------------------- /src/ui/LevelEditorForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/LevelEditorForm.Designer.cs -------------------------------------------------------------------------------- /src/ui/LevelEditorForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/LevelEditorForm.cs -------------------------------------------------------------------------------- /src/ui/LevelEditorForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/LevelEditorForm.resources -------------------------------------------------------------------------------- /src/ui/LevelEditorForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/LevelEditorForm.resx -------------------------------------------------------------------------------- /src/ui/LevelNameEditorForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/LevelNameEditorForm.Designer.cs -------------------------------------------------------------------------------- /src/ui/LevelNameEditorForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/LevelNameEditorForm.cs -------------------------------------------------------------------------------- /src/ui/LevelNameEditorForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/LevelNameEditorForm.resx -------------------------------------------------------------------------------- /src/ui/LevelSettingsForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/LevelSettingsForm.Designer.cs -------------------------------------------------------------------------------- /src/ui/LevelSettingsForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/LevelSettingsForm.cs -------------------------------------------------------------------------------- /src/ui/LevelSettingsForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/LevelSettingsForm.resources -------------------------------------------------------------------------------- /src/ui/LevelSettingsForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/LevelSettingsForm.resx -------------------------------------------------------------------------------- /src/ui/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/MainForm.Designer.cs -------------------------------------------------------------------------------- /src/ui/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/MainForm.cs -------------------------------------------------------------------------------- /src/ui/MainForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/MainForm.resources -------------------------------------------------------------------------------- /src/ui/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/MainForm.resx -------------------------------------------------------------------------------- /src/ui/MinimapEditor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/MinimapEditor.Designer.cs -------------------------------------------------------------------------------- /src/ui/MinimapEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/MinimapEditor.cs -------------------------------------------------------------------------------- /src/ui/MinimapEditor.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/MinimapEditor.resources -------------------------------------------------------------------------------- /src/ui/MinimapEditor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/MinimapEditor.resx -------------------------------------------------------------------------------- /src/ui/ModelAndCollisionMapEditor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/ModelAndCollisionMapEditor.Designer.cs -------------------------------------------------------------------------------- /src/ui/ModelAndCollisionMapEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/ModelAndCollisionMapEditor.cs -------------------------------------------------------------------------------- /src/ui/ModelAndCollisionMapEditor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/ModelAndCollisionMapEditor.resx -------------------------------------------------------------------------------- /src/ui/ModelImporter.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/ModelImporter.Designer.cs -------------------------------------------------------------------------------- /src/ui/ModelImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/ModelImporter.cs -------------------------------------------------------------------------------- /src/ui/ModelImporter.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/ModelImporter.resources -------------------------------------------------------------------------------- /src/ui/ModelImporter.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/ModelImporter.resx -------------------------------------------------------------------------------- /src/ui/ObjectListForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/ObjectListForm.Designer.cs -------------------------------------------------------------------------------- /src/ui/ObjectListForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/ObjectListForm.cs -------------------------------------------------------------------------------- /src/ui/ObjectListForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/ObjectListForm.resources -------------------------------------------------------------------------------- /src/ui/ObjectListForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/ObjectListForm.resx -------------------------------------------------------------------------------- /src/ui/OffsetAllObjectCoordsForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/OffsetAllObjectCoordsForm.Designer.cs -------------------------------------------------------------------------------- /src/ui/OffsetAllObjectCoordsForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/OffsetAllObjectCoordsForm.cs -------------------------------------------------------------------------------- /src/ui/OffsetAllObjectCoordsForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/OffsetAllObjectCoordsForm.resx -------------------------------------------------------------------------------- /src/ui/OverlayEditor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/OverlayEditor.Designer.cs -------------------------------------------------------------------------------- /src/ui/OverlayEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/OverlayEditor.cs -------------------------------------------------------------------------------- /src/ui/OverlayEditor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/OverlayEditor.resx -------------------------------------------------------------------------------- /src/ui/ParticleEditorForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/ParticleEditorForm.Designer.cs -------------------------------------------------------------------------------- /src/ui/ParticleEditorForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/ParticleEditorForm.cs -------------------------------------------------------------------------------- /src/ui/ParticleEditorForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/ParticleEditorForm.resx -------------------------------------------------------------------------------- /src/ui/ParticleTextureForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/ParticleTextureForm.Designer.cs -------------------------------------------------------------------------------- /src/ui/ParticleTextureForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/ParticleTextureForm.cs -------------------------------------------------------------------------------- /src/ui/ParticleTextureForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/ParticleTextureForm.resx -------------------------------------------------------------------------------- /src/ui/ParticleViewerForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/ParticleViewerForm.Designer.cs -------------------------------------------------------------------------------- /src/ui/ParticleViewerForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/ParticleViewerForm.cs -------------------------------------------------------------------------------- /src/ui/ParticleViewerForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/ParticleViewerForm.resx -------------------------------------------------------------------------------- /src/ui/PatchViewerForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/PatchViewerForm.Designer.cs -------------------------------------------------------------------------------- /src/ui/PatchViewerForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/PatchViewerForm.cs -------------------------------------------------------------------------------- /src/ui/PlanetCameraSettingsForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/PlanetCameraSettingsForm.Designer.cs -------------------------------------------------------------------------------- /src/ui/PlanetCameraSettingsForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/PlanetCameraSettingsForm.cs -------------------------------------------------------------------------------- /src/ui/PlanetCameraSettingsForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/PlanetCameraSettingsForm.resources -------------------------------------------------------------------------------- /src/ui/PlanetCameraSettingsForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/PlanetCameraSettingsForm.resx -------------------------------------------------------------------------------- /src/ui/ProgressDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/ProgressDialog.Designer.cs -------------------------------------------------------------------------------- /src/ui/ProgressDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/ProgressDialog.cs -------------------------------------------------------------------------------- /src/ui/ProgressDialog.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/ProgressDialog.resources -------------------------------------------------------------------------------- /src/ui/ProgressDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/ProgressDialog.resx -------------------------------------------------------------------------------- /src/ui/ROMFileSelect.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/ROMFileSelect.Designer.cs -------------------------------------------------------------------------------- /src/ui/ROMFileSelect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/ROMFileSelect.cs -------------------------------------------------------------------------------- /src/ui/ROMFileSelect.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/ROMFileSelect.resources -------------------------------------------------------------------------------- /src/ui/ROMFileSelect.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/ROMFileSelect.resx -------------------------------------------------------------------------------- /src/ui/SDATInfoEditor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/SDATInfoEditor.Designer.cs -------------------------------------------------------------------------------- /src/ui/SDATInfoEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/SDATInfoEditor.cs -------------------------------------------------------------------------------- /src/ui/SDATInfoEditor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/SDATInfoEditor.resx -------------------------------------------------------------------------------- /src/ui/SettingsForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/SettingsForm.Designer.cs -------------------------------------------------------------------------------- /src/ui/SettingsForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/SettingsForm.cs -------------------------------------------------------------------------------- /src/ui/SettingsForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/SettingsForm.resources -------------------------------------------------------------------------------- /src/ui/SettingsForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/SettingsForm.resx -------------------------------------------------------------------------------- /src/ui/SoundViewForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/SoundViewForm.Designer.cs -------------------------------------------------------------------------------- /src/ui/SoundViewForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/SoundViewForm.cs -------------------------------------------------------------------------------- /src/ui/SoundViewForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/SoundViewForm.resx -------------------------------------------------------------------------------- /src/ui/TempHaxForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/TempHaxForm.resources -------------------------------------------------------------------------------- /src/ui/TextDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/TextDialog.cs -------------------------------------------------------------------------------- /src/ui/TextDialogue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/TextDialogue.cs -------------------------------------------------------------------------------- /src/ui/TextDialogue.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/TextDialogue.designer.cs -------------------------------------------------------------------------------- /src/ui/TextEditorForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/TextEditorForm.Designer.cs -------------------------------------------------------------------------------- /src/ui/TextEditorForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/TextEditorForm.cs -------------------------------------------------------------------------------- /src/ui/TextEditorForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/TextEditorForm.resources -------------------------------------------------------------------------------- /src/ui/TextEditorForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/TextEditorForm.resx -------------------------------------------------------------------------------- /src/ui/TextureAnimationForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/TextureAnimationForm.Designer.cs -------------------------------------------------------------------------------- /src/ui/TextureAnimationForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/TextureAnimationForm.cs -------------------------------------------------------------------------------- /src/ui/TextureAnimationForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/TextureAnimationForm.resources -------------------------------------------------------------------------------- /src/ui/TextureAnimationForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/TextureAnimationForm.resx -------------------------------------------------------------------------------- /src/ui/TextureEditorForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/TextureEditorForm.Designer.cs -------------------------------------------------------------------------------- /src/ui/TextureEditorForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/TextureEditorForm.cs -------------------------------------------------------------------------------- /src/ui/TextureEditorForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/TextureEditorForm.resources -------------------------------------------------------------------------------- /src/ui/TextureEditorForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/TextureEditorForm.resx -------------------------------------------------------------------------------- /src/ui/UshortEditorForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/UshortEditorForm.Designer.cs -------------------------------------------------------------------------------- /src/ui/UshortEditorForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/UshortEditorForm.cs -------------------------------------------------------------------------------- /src/ui/UshortEditorForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/UshortEditorForm.resx -------------------------------------------------------------------------------- /src/ui/animations/CreateNewLevelAnimationDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/animations/CreateNewLevelAnimationDialog.Designer.cs -------------------------------------------------------------------------------- /src/ui/animations/CreateNewLevelAnimationDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/animations/CreateNewLevelAnimationDialog.cs -------------------------------------------------------------------------------- /src/ui/animations/CreateNewLevelAnimationDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/animations/CreateNewLevelAnimationDialog.resx -------------------------------------------------------------------------------- /src/ui/dialogs/DropdownDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/dialogs/DropdownDialog.Designer.cs -------------------------------------------------------------------------------- /src/ui/dialogs/DropdownDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/dialogs/DropdownDialog.cs -------------------------------------------------------------------------------- /src/ui/dialogs/RunningDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/dialogs/RunningDialog.Designer.cs -------------------------------------------------------------------------------- /src/ui/dialogs/RunningDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/dialogs/RunningDialog.cs -------------------------------------------------------------------------------- /src/ui/dls/DL Editor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/dls/DL Editor.Designer.cs -------------------------------------------------------------------------------- /src/ui/dls/DL Editor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/dls/DL Editor.cs -------------------------------------------------------------------------------- /src/ui/dls/DL Editor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/dls/DL Editor.resx -------------------------------------------------------------------------------- /src/ui/textures/BetterTextureAnimationEditor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/textures/BetterTextureAnimationEditor.Designer.cs -------------------------------------------------------------------------------- /src/ui/textures/BetterTextureAnimationEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/textures/BetterTextureAnimationEditor.cs -------------------------------------------------------------------------------- /src/ui/textures/BetterTextureAnimationEditor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/ui/textures/BetterTextureAnimationEditor.resx -------------------------------------------------------------------------------- /src/utils/Templates/CommonTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/utils/Templates/CommonTemplate.cs -------------------------------------------------------------------------------- /src/utils/Templates/PlatformTemplateForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/utils/Templates/PlatformTemplateForm.Designer.cs -------------------------------------------------------------------------------- /src/utils/Templates/PlatformTemplateForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/utils/Templates/PlatformTemplateForm.cs -------------------------------------------------------------------------------- /src/utils/Templates/PlatformTemplateForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gota7/SM64DSe-Ultimate/HEAD/src/utils/Templates/PlatformTemplateForm.resx --------------------------------------------------------------------------------