├── .import ├── .gdignore ├── CheckedBox.png-b2739eb850e9ca1f8c81330bdaaf42fa.md5 ├── CheckedBox.png-b2739eb850e9ca1f8c81330bdaaf42fa.stex ├── CheckedButton.png-31566293943476358b3db7483a8bd1dd.md5 ├── CheckedButton.png-31566293943476358b3db7483a8bd1dd.stex ├── CheckedButtonDis.png-258fea849e337774bd25184eb9a5072a.md5 ├── CheckedButtonDis.png-258fea849e337774bd25184eb9a5072a.stex ├── Grapper.png-24e96534bdca2a9ce35803ef36844bfa.md5 ├── Grapper.png-24e96534bdca2a9ce35803ef36844bfa.stex ├── GrapperHighlight.png-1ee68652c868459ace6e50cf275c83b8.md5 ├── GrapperHighlight.png-1ee68652c868459ace6e50cf275c83b8.stex ├── Love IDE.png-65e8d7b129d6df372ac8545fbb5fcc39.md5 ├── Love IDE.png-65e8d7b129d6df372ac8545fbb5fcc39.stex ├── LÖVE_logo.png-4c9fdfebe1128c92623547886429e34b.md5 ├── LÖVE_logo.png-4c9fdfebe1128c92623547886429e34b.stex ├── UnCheckButton.png-bcddfa506df366cadf4e21bbced91adc.md5 ├── UnCheckButton.png-bcddfa506df366cadf4e21bbced91adc.stex ├── UnCheckButtonDis.png-59657c08355f0a6382d33ffbd1a2b1be.md5 ├── UnCheckButtonDis.png-59657c08355f0a6382d33ffbd1a2b1be.stex ├── UnCheckedBox.png-d7683ecf214f28c8dbe2296f98924ad1.md5 ├── UnCheckedBox.png-d7683ecf214f28c8dbe2296f98924ad1.stex ├── file_icon.png-0fa640fbd7f0cab9ba1c52ed5c01ccf7.md5 ├── file_icon.png-0fa640fbd7f0cab9ba1c52ed5c01ccf7.stex ├── folder_icon.png-61c2379c0b2b3cffaef2ea5dad100861.md5 ├── folder_icon.png-61c2379c0b2b3cffaef2ea5dad100861.stex ├── icon.png-487276ed1e3a0c39cad0279d744ee560.md5 ├── icon.png-487276ed1e3a0c39cad0279d744ee560.stex ├── image_icon.png-038ee1de82f7eb69b2274169918368e2.md5 ├── image_icon.png-038ee1de82f7eb69b2274169918368e2.stex ├── love_icon.png-01ad7d4ede6d2023b5212f70042a1155.md5 ├── love_icon.png-01ad7d4ede6d2023b5212f70042a1155.stex ├── love_icon.png-2f2626106877d65e33e114d695628b43.md5 ├── love_icon.png-2f2626106877d65e33e114d695628b43.stex ├── lua.png-f014c3679be856e6eb5e5c2497d77d7b.md5 ├── lua.png-f014c3679be856e6eb5e5c2497d77d7b.stex ├── music_icon.png-90b3eb85e923e42be875d43697e172f6.md5 ├── music_icon.png-90b3eb85e923e42be875d43697e172f6.stex ├── play-icon.png-e4f2cde2b5f061b88716d97207b713f0.md5 ├── play-icon.png-e4f2cde2b5f061b88716d97207b713f0.stex ├── screenshot.png-b63fe7fcdf81ff166d272a2bd1ca7985.md5 ├── screenshot.png-b63fe7fcdf81ff166d272a2bd1ca7985.stex ├── spinbox.png-140117ab10c777f0fda4f537bee57408.md5 ├── spinbox.png-140117ab10c777f0fda4f537bee57408.stex └── splash_screen.png-c4325b211491e80389593ab522aa4a51.md5 ├── Boon.toml ├── Global.gd ├── LICENSE.md ├── Love IDE (icon).ico ├── Love IDE.png ├── Love IDE.png.import ├── LoveIDE.gd ├── LoveIDE.tscn ├── LÖVE_logo.png ├── LÖVE_logo.png.import ├── LÖVE_logo.png~ ├── README.md ├── assets ├── file_icon.png ├── file_icon.png.import ├── folder_icon.png ├── folder_icon.png.import ├── image_icon.png ├── image_icon.png.import ├── love_icon.png ├── love_icon.png.import ├── lua.png ├── lua.png.import ├── music_icon.png └── music_icon.png.import ├── boon ├── code_editor ├── CodeEdit.gd ├── CodeEdit.tscn ├── CodeTabs.tscn ├── FileSystem.gd ├── code_editor.gd └── code_editor.tscn ├── default_env.tres ├── export_presets.cfg ├── icon.png ├── icon.png.import ├── love-macos ├── boon └── love.app │ └── Contents │ ├── Frameworks │ └── freetype.framework │ │ ├── Resources │ │ ├── Versions │ │ ├── A │ │ │ ├── Resources │ │ │ │ └── Info.plist │ │ │ ├── _CodeSignature │ │ │ │ └── CodeResources │ │ │ └── freetype │ │ └── Current │ │ └── freetype │ ├── Info.plist │ ├── MacOS │ └── love │ ├── PkgInfo │ └── Resources │ ├── Assets.car │ ├── GameIcon.icns │ ├── OS X AppIcon.icns │ └── license.txt ├── love.AppImage ├── love ├── OpenAL32.dll ├── SDL2.dll ├── Uninstall.exe ├── boon.exe ├── changes.txt ├── game.ico ├── license.txt ├── love.dll ├── love.exe ├── love.ico ├── lovec.exe ├── lua51.dll ├── mpg123.dll ├── msvcp120.dll ├── msvcr120.dll └── readme.txt ├── love2d_api.lua ├── love_icon.png ├── love_icon.png.import ├── main.lua ├── play-icon.png ├── play-icon.png.import ├── project.godot ├── projects_list ├── ProjectsList.gd ├── ProjectsList.tscn └── save_data.gd ├── template ├── build.lua └── main.lua └── theme ├── DarkTheme ├── Dark.theme ├── Fonts │ ├── Ubuntu-L.ttf │ └── UbuntuFont.res ├── Icons │ ├── CheckedBox.png │ ├── CheckedBox.png.import │ ├── CheckedButton.png │ ├── CheckedButton.png.import │ ├── CheckedButtonDis.png │ ├── CheckedButtonDis.png.import │ ├── Grapper.png │ ├── Grapper.png.import │ ├── GrapperHighlight.png │ ├── GrapperHighlight.png.import │ ├── UnCheckButton.png │ ├── UnCheckButton.png.import │ ├── UnCheckButtonDis.png │ ├── UnCheckButtonDis.png.import │ ├── UnCheckedBox.png │ ├── UnCheckedBox.png.import │ ├── spinbox.png │ └── spinbox.png.import └── StyleBox │ ├── ButtonDisabled.stylebox │ ├── ButtonFocus.stylebox │ ├── ButtonHover.stylebox │ ├── ButtonNormal.stylebox │ ├── ButtonPressed.stylebox │ └── Panel.stylebox ├── aestro ├── LICENSE-RobotoMono.txt ├── LICENSE.txt ├── OFL.txt ├── RobotoCondensed-Regular.ttf ├── RobotoCondensed.tres ├── RobotoMono-Medium.ttf └── aestro.tres └── love2d ├── CartographCF-Bold.otf ├── CartographCF-BoldItalic.otf ├── CartographCF-DemiBold.otf ├── CartographCF-DemiBoldItalic.otf ├── CartographCF-ExtraBold.otf ├── CartographCF-ExtraBoldItalic.otf ├── CartographCF-ExtraLight.otf ├── CartographCF-ExtraLightItalic.otf ├── CartographCF-Heavy.otf ├── CartographCF-HeavyItalic.otf ├── CartographCF-Light.otf ├── CartographCF-LightItalic.otf ├── CartographCF-Regular.otf ├── CartographCF-RegularItalic.otf ├── CartographCF-Thin.otf ├── CartographCF-ThinItalic.otf └── love2d.tres /.import/.gdignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.import/CheckedBox.png-b2739eb850e9ca1f8c81330bdaaf42fa.md5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/.import/CheckedBox.png-b2739eb850e9ca1f8c81330bdaaf42fa.md5 -------------------------------------------------------------------------------- /.import/CheckedBox.png-b2739eb850e9ca1f8c81330bdaaf42fa.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/.import/CheckedBox.png-b2739eb850e9ca1f8c81330bdaaf42fa.stex -------------------------------------------------------------------------------- /.import/CheckedButton.png-31566293943476358b3db7483a8bd1dd.md5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/.import/CheckedButton.png-31566293943476358b3db7483a8bd1dd.md5 -------------------------------------------------------------------------------- /.import/CheckedButton.png-31566293943476358b3db7483a8bd1dd.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/.import/CheckedButton.png-31566293943476358b3db7483a8bd1dd.stex -------------------------------------------------------------------------------- /.import/CheckedButtonDis.png-258fea849e337774bd25184eb9a5072a.md5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/.import/CheckedButtonDis.png-258fea849e337774bd25184eb9a5072a.md5 -------------------------------------------------------------------------------- /.import/CheckedButtonDis.png-258fea849e337774bd25184eb9a5072a.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/.import/CheckedButtonDis.png-258fea849e337774bd25184eb9a5072a.stex -------------------------------------------------------------------------------- /.import/Grapper.png-24e96534bdca2a9ce35803ef36844bfa.md5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/.import/Grapper.png-24e96534bdca2a9ce35803ef36844bfa.md5 -------------------------------------------------------------------------------- /.import/Grapper.png-24e96534bdca2a9ce35803ef36844bfa.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/.import/Grapper.png-24e96534bdca2a9ce35803ef36844bfa.stex -------------------------------------------------------------------------------- /.import/GrapperHighlight.png-1ee68652c868459ace6e50cf275c83b8.md5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/.import/GrapperHighlight.png-1ee68652c868459ace6e50cf275c83b8.md5 -------------------------------------------------------------------------------- /.import/GrapperHighlight.png-1ee68652c868459ace6e50cf275c83b8.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/.import/GrapperHighlight.png-1ee68652c868459ace6e50cf275c83b8.stex -------------------------------------------------------------------------------- /.import/Love IDE.png-65e8d7b129d6df372ac8545fbb5fcc39.md5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/.import/Love IDE.png-65e8d7b129d6df372ac8545fbb5fcc39.md5 -------------------------------------------------------------------------------- /.import/Love IDE.png-65e8d7b129d6df372ac8545fbb5fcc39.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/.import/Love IDE.png-65e8d7b129d6df372ac8545fbb5fcc39.stex -------------------------------------------------------------------------------- /.import/LÖVE_logo.png-4c9fdfebe1128c92623547886429e34b.md5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/.import/LÖVE_logo.png-4c9fdfebe1128c92623547886429e34b.md5 -------------------------------------------------------------------------------- /.import/LÖVE_logo.png-4c9fdfebe1128c92623547886429e34b.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/.import/LÖVE_logo.png-4c9fdfebe1128c92623547886429e34b.stex -------------------------------------------------------------------------------- /.import/UnCheckButton.png-bcddfa506df366cadf4e21bbced91adc.md5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/.import/UnCheckButton.png-bcddfa506df366cadf4e21bbced91adc.md5 -------------------------------------------------------------------------------- /.import/UnCheckButton.png-bcddfa506df366cadf4e21bbced91adc.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/.import/UnCheckButton.png-bcddfa506df366cadf4e21bbced91adc.stex -------------------------------------------------------------------------------- /.import/UnCheckButtonDis.png-59657c08355f0a6382d33ffbd1a2b1be.md5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/.import/UnCheckButtonDis.png-59657c08355f0a6382d33ffbd1a2b1be.md5 -------------------------------------------------------------------------------- /.import/UnCheckButtonDis.png-59657c08355f0a6382d33ffbd1a2b1be.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/.import/UnCheckButtonDis.png-59657c08355f0a6382d33ffbd1a2b1be.stex -------------------------------------------------------------------------------- /.import/UnCheckedBox.png-d7683ecf214f28c8dbe2296f98924ad1.md5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/.import/UnCheckedBox.png-d7683ecf214f28c8dbe2296f98924ad1.md5 -------------------------------------------------------------------------------- /.import/UnCheckedBox.png-d7683ecf214f28c8dbe2296f98924ad1.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/.import/UnCheckedBox.png-d7683ecf214f28c8dbe2296f98924ad1.stex -------------------------------------------------------------------------------- /.import/file_icon.png-0fa640fbd7f0cab9ba1c52ed5c01ccf7.md5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/.import/file_icon.png-0fa640fbd7f0cab9ba1c52ed5c01ccf7.md5 -------------------------------------------------------------------------------- /.import/file_icon.png-0fa640fbd7f0cab9ba1c52ed5c01ccf7.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/.import/file_icon.png-0fa640fbd7f0cab9ba1c52ed5c01ccf7.stex -------------------------------------------------------------------------------- /.import/folder_icon.png-61c2379c0b2b3cffaef2ea5dad100861.md5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/.import/folder_icon.png-61c2379c0b2b3cffaef2ea5dad100861.md5 -------------------------------------------------------------------------------- /.import/folder_icon.png-61c2379c0b2b3cffaef2ea5dad100861.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/.import/folder_icon.png-61c2379c0b2b3cffaef2ea5dad100861.stex -------------------------------------------------------------------------------- /.import/icon.png-487276ed1e3a0c39cad0279d744ee560.md5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/.import/icon.png-487276ed1e3a0c39cad0279d744ee560.md5 -------------------------------------------------------------------------------- /.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex -------------------------------------------------------------------------------- /.import/image_icon.png-038ee1de82f7eb69b2274169918368e2.md5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/.import/image_icon.png-038ee1de82f7eb69b2274169918368e2.md5 -------------------------------------------------------------------------------- /.import/image_icon.png-038ee1de82f7eb69b2274169918368e2.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/.import/image_icon.png-038ee1de82f7eb69b2274169918368e2.stex -------------------------------------------------------------------------------- /.import/love_icon.png-01ad7d4ede6d2023b5212f70042a1155.md5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/.import/love_icon.png-01ad7d4ede6d2023b5212f70042a1155.md5 -------------------------------------------------------------------------------- /.import/love_icon.png-01ad7d4ede6d2023b5212f70042a1155.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/.import/love_icon.png-01ad7d4ede6d2023b5212f70042a1155.stex -------------------------------------------------------------------------------- /.import/love_icon.png-2f2626106877d65e33e114d695628b43.md5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/.import/love_icon.png-2f2626106877d65e33e114d695628b43.md5 -------------------------------------------------------------------------------- /.import/love_icon.png-2f2626106877d65e33e114d695628b43.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/.import/love_icon.png-2f2626106877d65e33e114d695628b43.stex -------------------------------------------------------------------------------- /.import/lua.png-f014c3679be856e6eb5e5c2497d77d7b.md5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/.import/lua.png-f014c3679be856e6eb5e5c2497d77d7b.md5 -------------------------------------------------------------------------------- /.import/lua.png-f014c3679be856e6eb5e5c2497d77d7b.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/.import/lua.png-f014c3679be856e6eb5e5c2497d77d7b.stex -------------------------------------------------------------------------------- /.import/music_icon.png-90b3eb85e923e42be875d43697e172f6.md5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/.import/music_icon.png-90b3eb85e923e42be875d43697e172f6.md5 -------------------------------------------------------------------------------- /.import/music_icon.png-90b3eb85e923e42be875d43697e172f6.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/.import/music_icon.png-90b3eb85e923e42be875d43697e172f6.stex -------------------------------------------------------------------------------- /.import/play-icon.png-e4f2cde2b5f061b88716d97207b713f0.md5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/.import/play-icon.png-e4f2cde2b5f061b88716d97207b713f0.md5 -------------------------------------------------------------------------------- /.import/play-icon.png-e4f2cde2b5f061b88716d97207b713f0.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/.import/play-icon.png-e4f2cde2b5f061b88716d97207b713f0.stex -------------------------------------------------------------------------------- /.import/screenshot.png-b63fe7fcdf81ff166d272a2bd1ca7985.md5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/.import/screenshot.png-b63fe7fcdf81ff166d272a2bd1ca7985.md5 -------------------------------------------------------------------------------- /.import/screenshot.png-b63fe7fcdf81ff166d272a2bd1ca7985.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/.import/screenshot.png-b63fe7fcdf81ff166d272a2bd1ca7985.stex -------------------------------------------------------------------------------- /.import/spinbox.png-140117ab10c777f0fda4f537bee57408.md5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/.import/spinbox.png-140117ab10c777f0fda4f537bee57408.md5 -------------------------------------------------------------------------------- /.import/spinbox.png-140117ab10c777f0fda4f537bee57408.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/.import/spinbox.png-140117ab10c777f0fda4f537bee57408.stex -------------------------------------------------------------------------------- /.import/splash_screen.png-c4325b211491e80389593ab522aa4a51.md5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/.import/splash_screen.png-c4325b211491e80389593ab522aa4a51.md5 -------------------------------------------------------------------------------- /Boon.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/Boon.toml -------------------------------------------------------------------------------- /Global.gd: -------------------------------------------------------------------------------- 1 | extends Node 2 | 3 | var project_path = null 4 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Love IDE (icon).ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/Love IDE (icon).ico -------------------------------------------------------------------------------- /Love IDE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/Love IDE.png -------------------------------------------------------------------------------- /Love IDE.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/Love IDE.png.import -------------------------------------------------------------------------------- /LoveIDE.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/LoveIDE.gd -------------------------------------------------------------------------------- /LoveIDE.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/LoveIDE.tscn -------------------------------------------------------------------------------- /LÖVE_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/LÖVE_logo.png -------------------------------------------------------------------------------- /LÖVE_logo.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/LÖVE_logo.png.import -------------------------------------------------------------------------------- /LÖVE_logo.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/LÖVE_logo.png~ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/README.md -------------------------------------------------------------------------------- /assets/file_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/assets/file_icon.png -------------------------------------------------------------------------------- /assets/file_icon.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/assets/file_icon.png.import -------------------------------------------------------------------------------- /assets/folder_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/assets/folder_icon.png -------------------------------------------------------------------------------- /assets/folder_icon.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/assets/folder_icon.png.import -------------------------------------------------------------------------------- /assets/image_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/assets/image_icon.png -------------------------------------------------------------------------------- /assets/image_icon.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/assets/image_icon.png.import -------------------------------------------------------------------------------- /assets/love_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/assets/love_icon.png -------------------------------------------------------------------------------- /assets/love_icon.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/assets/love_icon.png.import -------------------------------------------------------------------------------- /assets/lua.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/assets/lua.png -------------------------------------------------------------------------------- /assets/lua.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/assets/lua.png.import -------------------------------------------------------------------------------- /assets/music_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/assets/music_icon.png -------------------------------------------------------------------------------- /assets/music_icon.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/assets/music_icon.png.import -------------------------------------------------------------------------------- /boon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/boon -------------------------------------------------------------------------------- /code_editor/CodeEdit.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/code_editor/CodeEdit.gd -------------------------------------------------------------------------------- /code_editor/CodeEdit.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/code_editor/CodeEdit.tscn -------------------------------------------------------------------------------- /code_editor/CodeTabs.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/code_editor/CodeTabs.tscn -------------------------------------------------------------------------------- /code_editor/FileSystem.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/code_editor/FileSystem.gd -------------------------------------------------------------------------------- /code_editor/code_editor.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/code_editor/code_editor.gd -------------------------------------------------------------------------------- /code_editor/code_editor.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/code_editor/code_editor.tscn -------------------------------------------------------------------------------- /default_env.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/default_env.tres -------------------------------------------------------------------------------- /export_presets.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/export_presets.cfg -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/icon.png -------------------------------------------------------------------------------- /icon.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/icon.png.import -------------------------------------------------------------------------------- /love-macos/boon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/love-macos/boon -------------------------------------------------------------------------------- /love-macos/love.app/Contents/Frameworks/freetype.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /love-macos/love.app/Contents/Frameworks/freetype.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/love-macos/love.app/Contents/Frameworks/freetype.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /love-macos/love.app/Contents/Frameworks/freetype.framework/Versions/A/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/love-macos/love.app/Contents/Frameworks/freetype.framework/Versions/A/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /love-macos/love.app/Contents/Frameworks/freetype.framework/Versions/A/freetype: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/love-macos/love.app/Contents/Frameworks/freetype.framework/Versions/A/freetype -------------------------------------------------------------------------------- /love-macos/love.app/Contents/Frameworks/freetype.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /love-macos/love.app/Contents/Frameworks/freetype.framework/freetype: -------------------------------------------------------------------------------- 1 | Versions/Current/freetype -------------------------------------------------------------------------------- /love-macos/love.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/love-macos/love.app/Contents/Info.plist -------------------------------------------------------------------------------- /love-macos/love.app/Contents/MacOS/love: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/love-macos/love.app/Contents/MacOS/love -------------------------------------------------------------------------------- /love-macos/love.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLLoVe -------------------------------------------------------------------------------- /love-macos/love.app/Contents/Resources/Assets.car: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/love-macos/love.app/Contents/Resources/Assets.car -------------------------------------------------------------------------------- /love-macos/love.app/Contents/Resources/GameIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/love-macos/love.app/Contents/Resources/GameIcon.icns -------------------------------------------------------------------------------- /love-macos/love.app/Contents/Resources/OS X AppIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/love-macos/love.app/Contents/Resources/OS X AppIcon.icns -------------------------------------------------------------------------------- /love-macos/love.app/Contents/Resources/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/love-macos/love.app/Contents/Resources/license.txt -------------------------------------------------------------------------------- /love.AppImage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/love.AppImage -------------------------------------------------------------------------------- /love/OpenAL32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/love/OpenAL32.dll -------------------------------------------------------------------------------- /love/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/love/SDL2.dll -------------------------------------------------------------------------------- /love/Uninstall.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/love/Uninstall.exe -------------------------------------------------------------------------------- /love/boon.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/love/boon.exe -------------------------------------------------------------------------------- /love/changes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/love/changes.txt -------------------------------------------------------------------------------- /love/game.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/love/game.ico -------------------------------------------------------------------------------- /love/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/love/license.txt -------------------------------------------------------------------------------- /love/love.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/love/love.dll -------------------------------------------------------------------------------- /love/love.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/love/love.exe -------------------------------------------------------------------------------- /love/love.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/love/love.ico -------------------------------------------------------------------------------- /love/lovec.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/love/lovec.exe -------------------------------------------------------------------------------- /love/lua51.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/love/lua51.dll -------------------------------------------------------------------------------- /love/mpg123.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/love/mpg123.dll -------------------------------------------------------------------------------- /love/msvcp120.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/love/msvcp120.dll -------------------------------------------------------------------------------- /love/msvcr120.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/love/msvcr120.dll -------------------------------------------------------------------------------- /love/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/love/readme.txt -------------------------------------------------------------------------------- /love2d_api.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/love2d_api.lua -------------------------------------------------------------------------------- /love_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/love_icon.png -------------------------------------------------------------------------------- /love_icon.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/love_icon.png.import -------------------------------------------------------------------------------- /main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/main.lua -------------------------------------------------------------------------------- /play-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/play-icon.png -------------------------------------------------------------------------------- /play-icon.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/play-icon.png.import -------------------------------------------------------------------------------- /project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/project.godot -------------------------------------------------------------------------------- /projects_list/ProjectsList.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/projects_list/ProjectsList.gd -------------------------------------------------------------------------------- /projects_list/ProjectsList.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/projects_list/ProjectsList.tscn -------------------------------------------------------------------------------- /projects_list/save_data.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/projects_list/save_data.gd -------------------------------------------------------------------------------- /template/build.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/template/build.lua -------------------------------------------------------------------------------- /template/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/template/main.lua -------------------------------------------------------------------------------- /theme/DarkTheme/Dark.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/theme/DarkTheme/Dark.theme -------------------------------------------------------------------------------- /theme/DarkTheme/Fonts/Ubuntu-L.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/theme/DarkTheme/Fonts/Ubuntu-L.ttf -------------------------------------------------------------------------------- /theme/DarkTheme/Fonts/UbuntuFont.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/theme/DarkTheme/Fonts/UbuntuFont.res -------------------------------------------------------------------------------- /theme/DarkTheme/Icons/CheckedBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/theme/DarkTheme/Icons/CheckedBox.png -------------------------------------------------------------------------------- /theme/DarkTheme/Icons/CheckedBox.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/theme/DarkTheme/Icons/CheckedBox.png.import -------------------------------------------------------------------------------- /theme/DarkTheme/Icons/CheckedButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/theme/DarkTheme/Icons/CheckedButton.png -------------------------------------------------------------------------------- /theme/DarkTheme/Icons/CheckedButton.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/theme/DarkTheme/Icons/CheckedButton.png.import -------------------------------------------------------------------------------- /theme/DarkTheme/Icons/CheckedButtonDis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/theme/DarkTheme/Icons/CheckedButtonDis.png -------------------------------------------------------------------------------- /theme/DarkTheme/Icons/CheckedButtonDis.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/theme/DarkTheme/Icons/CheckedButtonDis.png.import -------------------------------------------------------------------------------- /theme/DarkTheme/Icons/Grapper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/theme/DarkTheme/Icons/Grapper.png -------------------------------------------------------------------------------- /theme/DarkTheme/Icons/Grapper.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/theme/DarkTheme/Icons/Grapper.png.import -------------------------------------------------------------------------------- /theme/DarkTheme/Icons/GrapperHighlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/theme/DarkTheme/Icons/GrapperHighlight.png -------------------------------------------------------------------------------- /theme/DarkTheme/Icons/GrapperHighlight.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/theme/DarkTheme/Icons/GrapperHighlight.png.import -------------------------------------------------------------------------------- /theme/DarkTheme/Icons/UnCheckButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/theme/DarkTheme/Icons/UnCheckButton.png -------------------------------------------------------------------------------- /theme/DarkTheme/Icons/UnCheckButton.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/theme/DarkTheme/Icons/UnCheckButton.png.import -------------------------------------------------------------------------------- /theme/DarkTheme/Icons/UnCheckButtonDis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/theme/DarkTheme/Icons/UnCheckButtonDis.png -------------------------------------------------------------------------------- /theme/DarkTheme/Icons/UnCheckButtonDis.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/theme/DarkTheme/Icons/UnCheckButtonDis.png.import -------------------------------------------------------------------------------- /theme/DarkTheme/Icons/UnCheckedBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/theme/DarkTheme/Icons/UnCheckedBox.png -------------------------------------------------------------------------------- /theme/DarkTheme/Icons/UnCheckedBox.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/theme/DarkTheme/Icons/UnCheckedBox.png.import -------------------------------------------------------------------------------- /theme/DarkTheme/Icons/spinbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/theme/DarkTheme/Icons/spinbox.png -------------------------------------------------------------------------------- /theme/DarkTheme/Icons/spinbox.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/theme/DarkTheme/Icons/spinbox.png.import -------------------------------------------------------------------------------- /theme/DarkTheme/StyleBox/ButtonDisabled.stylebox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/theme/DarkTheme/StyleBox/ButtonDisabled.stylebox -------------------------------------------------------------------------------- /theme/DarkTheme/StyleBox/ButtonFocus.stylebox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/theme/DarkTheme/StyleBox/ButtonFocus.stylebox -------------------------------------------------------------------------------- /theme/DarkTheme/StyleBox/ButtonHover.stylebox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/theme/DarkTheme/StyleBox/ButtonHover.stylebox -------------------------------------------------------------------------------- /theme/DarkTheme/StyleBox/ButtonNormal.stylebox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/theme/DarkTheme/StyleBox/ButtonNormal.stylebox -------------------------------------------------------------------------------- /theme/DarkTheme/StyleBox/ButtonPressed.stylebox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/theme/DarkTheme/StyleBox/ButtonPressed.stylebox -------------------------------------------------------------------------------- /theme/DarkTheme/StyleBox/Panel.stylebox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/theme/DarkTheme/StyleBox/Panel.stylebox -------------------------------------------------------------------------------- /theme/aestro/LICENSE-RobotoMono.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/theme/aestro/LICENSE-RobotoMono.txt -------------------------------------------------------------------------------- /theme/aestro/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/theme/aestro/LICENSE.txt -------------------------------------------------------------------------------- /theme/aestro/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/theme/aestro/OFL.txt -------------------------------------------------------------------------------- /theme/aestro/RobotoCondensed-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/theme/aestro/RobotoCondensed-Regular.ttf -------------------------------------------------------------------------------- /theme/aestro/RobotoCondensed.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/theme/aestro/RobotoCondensed.tres -------------------------------------------------------------------------------- /theme/aestro/RobotoMono-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/theme/aestro/RobotoMono-Medium.ttf -------------------------------------------------------------------------------- /theme/aestro/aestro.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/theme/aestro/aestro.tres -------------------------------------------------------------------------------- /theme/love2d/CartographCF-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/theme/love2d/CartographCF-Bold.otf -------------------------------------------------------------------------------- /theme/love2d/CartographCF-BoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/theme/love2d/CartographCF-BoldItalic.otf -------------------------------------------------------------------------------- /theme/love2d/CartographCF-DemiBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/theme/love2d/CartographCF-DemiBold.otf -------------------------------------------------------------------------------- /theme/love2d/CartographCF-DemiBoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/theme/love2d/CartographCF-DemiBoldItalic.otf -------------------------------------------------------------------------------- /theme/love2d/CartographCF-ExtraBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/theme/love2d/CartographCF-ExtraBold.otf -------------------------------------------------------------------------------- /theme/love2d/CartographCF-ExtraBoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/theme/love2d/CartographCF-ExtraBoldItalic.otf -------------------------------------------------------------------------------- /theme/love2d/CartographCF-ExtraLight.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/theme/love2d/CartographCF-ExtraLight.otf -------------------------------------------------------------------------------- /theme/love2d/CartographCF-ExtraLightItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/theme/love2d/CartographCF-ExtraLightItalic.otf -------------------------------------------------------------------------------- /theme/love2d/CartographCF-Heavy.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/theme/love2d/CartographCF-Heavy.otf -------------------------------------------------------------------------------- /theme/love2d/CartographCF-HeavyItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/theme/love2d/CartographCF-HeavyItalic.otf -------------------------------------------------------------------------------- /theme/love2d/CartographCF-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/theme/love2d/CartographCF-Light.otf -------------------------------------------------------------------------------- /theme/love2d/CartographCF-LightItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/theme/love2d/CartographCF-LightItalic.otf -------------------------------------------------------------------------------- /theme/love2d/CartographCF-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/theme/love2d/CartographCF-Regular.otf -------------------------------------------------------------------------------- /theme/love2d/CartographCF-RegularItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/theme/love2d/CartographCF-RegularItalic.otf -------------------------------------------------------------------------------- /theme/love2d/CartographCF-Thin.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/theme/love2d/CartographCF-Thin.otf -------------------------------------------------------------------------------- /theme/love2d/CartographCF-ThinItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/theme/love2d/CartographCF-ThinItalic.otf -------------------------------------------------------------------------------- /theme/love2d/love2d.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huy-Nguyen-web/love2d-ide/HEAD/theme/love2d/love2d.tres --------------------------------------------------------------------------------