├── .vscode └── settings.json ├── LICENSE ├── README.md ├── gui.cpp ├── gui.hpp ├── screen.hpp ├── screenCommon.hpp ├── structs.hpp └── universal-core-logo.png /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "files.associations": { 3 | "string": "cpp" 4 | } 5 | } -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Core/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Core/HEAD/README.md -------------------------------------------------------------------------------- /gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Core/HEAD/gui.cpp -------------------------------------------------------------------------------- /gui.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Core/HEAD/gui.hpp -------------------------------------------------------------------------------- /screen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Core/HEAD/screen.hpp -------------------------------------------------------------------------------- /screenCommon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Core/HEAD/screenCommon.hpp -------------------------------------------------------------------------------- /structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Core/HEAD/structs.hpp -------------------------------------------------------------------------------- /universal-core-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Core/HEAD/universal-core-logo.png --------------------------------------------------------------------------------