├── .gitignore ├── LICENSE.md ├── P8Coder ├── App.config ├── CoderForm.Designer.cs ├── CoderForm.cs ├── CoderForm.resx ├── Controls │ └── ControlExtensions.cs ├── Core │ ├── Cartridge.cs │ ├── Device.cs │ ├── Entity.cs │ ├── Function.cs │ └── Project.cs ├── EntityForm.Designer.cs ├── EntityForm.cs ├── EntityForm.resx ├── FastColoredTextbox │ ├── AutocompleteItem.cs │ ├── AutocompleteMenu.cs │ ├── Bookmarks.cs │ ├── Char.cs │ ├── CommandManager.cs │ ├── Commands.cs │ ├── DocumentMap.cs │ ├── EncodingDetector.cs │ ├── ExportToHTML.cs │ ├── ExportToRTF.cs │ ├── FastColoredTextBox.cs │ ├── FastColoredTextBox.resx │ ├── FileTextSource.cs │ ├── FindForm.Designer.cs │ ├── FindForm.cs │ ├── FindForm.resx │ ├── GoToForm.Designer.cs │ ├── GoToForm.cs │ ├── GoToForm.resx │ ├── Hints.cs │ ├── Hotkeys.cs │ ├── HotkeysEditorForm.Designer.cs │ ├── HotkeysEditorForm.cs │ ├── HotkeysEditorForm.resx │ ├── LimitedStack.cs │ ├── Line.cs │ ├── LinesAccessor.cs │ ├── MacrosManager.cs │ ├── Place.cs │ ├── PlatformType.cs │ ├── Range.cs │ ├── ReplaceForm.Designer.cs │ ├── ReplaceForm.cs │ ├── ReplaceForm.resx │ ├── Ruler.Designer.cs │ ├── Ruler.cs │ ├── Style.cs │ ├── SyntaxDescriptor.cs │ ├── SyntaxHighlighter.cs │ ├── TextSource.cs │ ├── TypeDescriptor.cs │ ├── UnfocusablePanel.cs │ └── VisualMarker.cs ├── FunctionForm.Designer.cs ├── FunctionForm.cs ├── FunctionForm.resx ├── LaunchSettingsForm.Designer.cs ├── LaunchSettingsForm.cs ├── LaunchSettingsForm.resx ├── MapForm.Designer.cs ├── MapForm.cs ├── MapForm.resx ├── P8Coder.csproj ├── P8Coder.sln ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ ├── Save_6530.png │ ├── bot.png │ ├── bot_inv.png │ ├── code.png │ ├── colors.png │ ├── colors1.png │ ├── components.png │ ├── github.png │ ├── map1.png │ ├── pico8-api.png │ ├── pico8.png │ ├── pico8api.txt │ ├── pico8params.png │ ├── sprite.png │ └── theme.png ├── SpritesheetForm.Designer.cs ├── SpritesheetForm.cs ├── SpritesheetForm.resx ├── Utils │ ├── IniFile.cs │ └── UserSettings.cs └── p8coder.ico ├── README.md └── screenshots ├── codehints.png ├── colors.png ├── launchparams.png ├── mapviewer.png ├── p8coder.png ├── p8coderdark.png └── spritesheet.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/LICENSE.md -------------------------------------------------------------------------------- /P8Coder/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/App.config -------------------------------------------------------------------------------- /P8Coder/CoderForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/CoderForm.Designer.cs -------------------------------------------------------------------------------- /P8Coder/CoderForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/CoderForm.cs -------------------------------------------------------------------------------- /P8Coder/CoderForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/CoderForm.resx -------------------------------------------------------------------------------- /P8Coder/Controls/ControlExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/Controls/ControlExtensions.cs -------------------------------------------------------------------------------- /P8Coder/Core/Cartridge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/Core/Cartridge.cs -------------------------------------------------------------------------------- /P8Coder/Core/Device.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/Core/Device.cs -------------------------------------------------------------------------------- /P8Coder/Core/Entity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/Core/Entity.cs -------------------------------------------------------------------------------- /P8Coder/Core/Function.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/Core/Function.cs -------------------------------------------------------------------------------- /P8Coder/Core/Project.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/Core/Project.cs -------------------------------------------------------------------------------- /P8Coder/EntityForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/EntityForm.Designer.cs -------------------------------------------------------------------------------- /P8Coder/EntityForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/EntityForm.cs -------------------------------------------------------------------------------- /P8Coder/EntityForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/EntityForm.resx -------------------------------------------------------------------------------- /P8Coder/FastColoredTextbox/AutocompleteItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/FastColoredTextbox/AutocompleteItem.cs -------------------------------------------------------------------------------- /P8Coder/FastColoredTextbox/AutocompleteMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/FastColoredTextbox/AutocompleteMenu.cs -------------------------------------------------------------------------------- /P8Coder/FastColoredTextbox/Bookmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/FastColoredTextbox/Bookmarks.cs -------------------------------------------------------------------------------- /P8Coder/FastColoredTextbox/Char.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/FastColoredTextbox/Char.cs -------------------------------------------------------------------------------- /P8Coder/FastColoredTextbox/CommandManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/FastColoredTextbox/CommandManager.cs -------------------------------------------------------------------------------- /P8Coder/FastColoredTextbox/Commands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/FastColoredTextbox/Commands.cs -------------------------------------------------------------------------------- /P8Coder/FastColoredTextbox/DocumentMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/FastColoredTextbox/DocumentMap.cs -------------------------------------------------------------------------------- /P8Coder/FastColoredTextbox/EncodingDetector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/FastColoredTextbox/EncodingDetector.cs -------------------------------------------------------------------------------- /P8Coder/FastColoredTextbox/ExportToHTML.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/FastColoredTextbox/ExportToHTML.cs -------------------------------------------------------------------------------- /P8Coder/FastColoredTextbox/ExportToRTF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/FastColoredTextbox/ExportToRTF.cs -------------------------------------------------------------------------------- /P8Coder/FastColoredTextbox/FastColoredTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/FastColoredTextbox/FastColoredTextBox.cs -------------------------------------------------------------------------------- /P8Coder/FastColoredTextbox/FastColoredTextBox.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/FastColoredTextbox/FastColoredTextBox.resx -------------------------------------------------------------------------------- /P8Coder/FastColoredTextbox/FileTextSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/FastColoredTextbox/FileTextSource.cs -------------------------------------------------------------------------------- /P8Coder/FastColoredTextbox/FindForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/FastColoredTextbox/FindForm.Designer.cs -------------------------------------------------------------------------------- /P8Coder/FastColoredTextbox/FindForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/FastColoredTextbox/FindForm.cs -------------------------------------------------------------------------------- /P8Coder/FastColoredTextbox/FindForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/FastColoredTextbox/FindForm.resx -------------------------------------------------------------------------------- /P8Coder/FastColoredTextbox/GoToForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/FastColoredTextbox/GoToForm.Designer.cs -------------------------------------------------------------------------------- /P8Coder/FastColoredTextbox/GoToForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/FastColoredTextbox/GoToForm.cs -------------------------------------------------------------------------------- /P8Coder/FastColoredTextbox/GoToForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/FastColoredTextbox/GoToForm.resx -------------------------------------------------------------------------------- /P8Coder/FastColoredTextbox/Hints.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/FastColoredTextbox/Hints.cs -------------------------------------------------------------------------------- /P8Coder/FastColoredTextbox/Hotkeys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/FastColoredTextbox/Hotkeys.cs -------------------------------------------------------------------------------- /P8Coder/FastColoredTextbox/HotkeysEditorForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/FastColoredTextbox/HotkeysEditorForm.Designer.cs -------------------------------------------------------------------------------- /P8Coder/FastColoredTextbox/HotkeysEditorForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/FastColoredTextbox/HotkeysEditorForm.cs -------------------------------------------------------------------------------- /P8Coder/FastColoredTextbox/HotkeysEditorForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/FastColoredTextbox/HotkeysEditorForm.resx -------------------------------------------------------------------------------- /P8Coder/FastColoredTextbox/LimitedStack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/FastColoredTextbox/LimitedStack.cs -------------------------------------------------------------------------------- /P8Coder/FastColoredTextbox/Line.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/FastColoredTextbox/Line.cs -------------------------------------------------------------------------------- /P8Coder/FastColoredTextbox/LinesAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/FastColoredTextbox/LinesAccessor.cs -------------------------------------------------------------------------------- /P8Coder/FastColoredTextbox/MacrosManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/FastColoredTextbox/MacrosManager.cs -------------------------------------------------------------------------------- /P8Coder/FastColoredTextbox/Place.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/FastColoredTextbox/Place.cs -------------------------------------------------------------------------------- /P8Coder/FastColoredTextbox/PlatformType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/FastColoredTextbox/PlatformType.cs -------------------------------------------------------------------------------- /P8Coder/FastColoredTextbox/Range.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/FastColoredTextbox/Range.cs -------------------------------------------------------------------------------- /P8Coder/FastColoredTextbox/ReplaceForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/FastColoredTextbox/ReplaceForm.Designer.cs -------------------------------------------------------------------------------- /P8Coder/FastColoredTextbox/ReplaceForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/FastColoredTextbox/ReplaceForm.cs -------------------------------------------------------------------------------- /P8Coder/FastColoredTextbox/ReplaceForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/FastColoredTextbox/ReplaceForm.resx -------------------------------------------------------------------------------- /P8Coder/FastColoredTextbox/Ruler.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/FastColoredTextbox/Ruler.Designer.cs -------------------------------------------------------------------------------- /P8Coder/FastColoredTextbox/Ruler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/FastColoredTextbox/Ruler.cs -------------------------------------------------------------------------------- /P8Coder/FastColoredTextbox/Style.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/FastColoredTextbox/Style.cs -------------------------------------------------------------------------------- /P8Coder/FastColoredTextbox/SyntaxDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/FastColoredTextbox/SyntaxDescriptor.cs -------------------------------------------------------------------------------- /P8Coder/FastColoredTextbox/SyntaxHighlighter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/FastColoredTextbox/SyntaxHighlighter.cs -------------------------------------------------------------------------------- /P8Coder/FastColoredTextbox/TextSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/FastColoredTextbox/TextSource.cs -------------------------------------------------------------------------------- /P8Coder/FastColoredTextbox/TypeDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/FastColoredTextbox/TypeDescriptor.cs -------------------------------------------------------------------------------- /P8Coder/FastColoredTextbox/UnfocusablePanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/FastColoredTextbox/UnfocusablePanel.cs -------------------------------------------------------------------------------- /P8Coder/FastColoredTextbox/VisualMarker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/FastColoredTextbox/VisualMarker.cs -------------------------------------------------------------------------------- /P8Coder/FunctionForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/FunctionForm.Designer.cs -------------------------------------------------------------------------------- /P8Coder/FunctionForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/FunctionForm.cs -------------------------------------------------------------------------------- /P8Coder/FunctionForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/FunctionForm.resx -------------------------------------------------------------------------------- /P8Coder/LaunchSettingsForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/LaunchSettingsForm.Designer.cs -------------------------------------------------------------------------------- /P8Coder/LaunchSettingsForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/LaunchSettingsForm.cs -------------------------------------------------------------------------------- /P8Coder/LaunchSettingsForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/LaunchSettingsForm.resx -------------------------------------------------------------------------------- /P8Coder/MapForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/MapForm.Designer.cs -------------------------------------------------------------------------------- /P8Coder/MapForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/MapForm.cs -------------------------------------------------------------------------------- /P8Coder/MapForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/MapForm.resx -------------------------------------------------------------------------------- /P8Coder/P8Coder.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/P8Coder.csproj -------------------------------------------------------------------------------- /P8Coder/P8Coder.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/P8Coder.sln -------------------------------------------------------------------------------- /P8Coder/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/Program.cs -------------------------------------------------------------------------------- /P8Coder/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /P8Coder/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /P8Coder/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/Properties/Resources.resx -------------------------------------------------------------------------------- /P8Coder/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /P8Coder/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/Properties/Settings.settings -------------------------------------------------------------------------------- /P8Coder/Resources/Save_6530.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/Resources/Save_6530.png -------------------------------------------------------------------------------- /P8Coder/Resources/bot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/Resources/bot.png -------------------------------------------------------------------------------- /P8Coder/Resources/bot_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/Resources/bot_inv.png -------------------------------------------------------------------------------- /P8Coder/Resources/code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/Resources/code.png -------------------------------------------------------------------------------- /P8Coder/Resources/colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/Resources/colors.png -------------------------------------------------------------------------------- /P8Coder/Resources/colors1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/Resources/colors1.png -------------------------------------------------------------------------------- /P8Coder/Resources/components.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/Resources/components.png -------------------------------------------------------------------------------- /P8Coder/Resources/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/Resources/github.png -------------------------------------------------------------------------------- /P8Coder/Resources/map1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/Resources/map1.png -------------------------------------------------------------------------------- /P8Coder/Resources/pico8-api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/Resources/pico8-api.png -------------------------------------------------------------------------------- /P8Coder/Resources/pico8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/Resources/pico8.png -------------------------------------------------------------------------------- /P8Coder/Resources/pico8api.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/Resources/pico8api.txt -------------------------------------------------------------------------------- /P8Coder/Resources/pico8params.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/Resources/pico8params.png -------------------------------------------------------------------------------- /P8Coder/Resources/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/Resources/sprite.png -------------------------------------------------------------------------------- /P8Coder/Resources/theme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/Resources/theme.png -------------------------------------------------------------------------------- /P8Coder/SpritesheetForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/SpritesheetForm.Designer.cs -------------------------------------------------------------------------------- /P8Coder/SpritesheetForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/SpritesheetForm.cs -------------------------------------------------------------------------------- /P8Coder/SpritesheetForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/SpritesheetForm.resx -------------------------------------------------------------------------------- /P8Coder/Utils/IniFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/Utils/IniFile.cs -------------------------------------------------------------------------------- /P8Coder/Utils/UserSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/Utils/UserSettings.cs -------------------------------------------------------------------------------- /P8Coder/p8coder.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/P8Coder/p8coder.ico -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/README.md -------------------------------------------------------------------------------- /screenshots/codehints.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/screenshots/codehints.png -------------------------------------------------------------------------------- /screenshots/colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/screenshots/colors.png -------------------------------------------------------------------------------- /screenshots/launchparams.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/screenshots/launchparams.png -------------------------------------------------------------------------------- /screenshots/mapviewer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/screenshots/mapviewer.png -------------------------------------------------------------------------------- /screenshots/p8coder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/screenshots/p8coder.png -------------------------------------------------------------------------------- /screenshots/p8coderdark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/screenshots/p8coderdark.png -------------------------------------------------------------------------------- /screenshots/spritesheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movAX13h/P8Coder/HEAD/screenshots/spritesheet.png --------------------------------------------------------------------------------