├── .gitignore ├── .vscode ├── launch.json └── tasks.json ├── README.md ├── main.odin └── ols.json /.gitignore: -------------------------------------------------------------------------------- 1 | *.exe 2 | build/ 3 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RednibCoding/Odin-Starter/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RednibCoding/Odin-Starter/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RednibCoding/Odin-Starter/HEAD/README.md -------------------------------------------------------------------------------- /main.odin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RednibCoding/Odin-Starter/HEAD/main.odin -------------------------------------------------------------------------------- /ols.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RednibCoding/Odin-Starter/HEAD/ols.json --------------------------------------------------------------------------------