Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yoyoengine/template
The barebones template for a yoyoengine project, containing all of the boilerplate to get something working.
https://github.com/yoyoengine/template
game template yoyoengine
Last synced: 16 days ago
JSON representation
The barebones template for a yoyoengine project, containing all of the boilerplate to get something working.
- Host: GitHub
- URL: https://github.com/yoyoengine/template
- Owner: yoyoengine
- Created: 2024-08-27T21:08:48.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-12-22T18:23:57.000Z (about 1 month ago)
- Last Synced: 2024-12-22T19:33:25.981Z (about 1 month ago)
- Topics: game, template, yoyoengine
- Language: CMake
- Homepage:
- Size: 48.8 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Template
This is an example template for a yoyoengine game.
## Quickstart
1. Open this project
- If you created this inside of yoyoeditor, open yoyoeditor and then open this project with the "Open Project" option.
- If you created this outside of yoyoeditor, open yoyoeditor and then open this directory with the "Open Existing Project" option.
2. Configure the project
- Open the bottom left build settings panel, and configure the project build settings to your liking, then save!
3. Build the project
- Press the hammer and gear icon to configure and build your project, then the play button to run it.## Pushing to source control
If you created this project through yoyoeditor, this will reside inside a directory tracked by git. To push this to your own repository, you will need to create a new repository on github, and then push this project to it.
1. Create a new remote repository
2. Add the remote url
- `git remote add origin `
3. Add and commit the project
- `git add .`
- `git commit -m "Initial commit"`
4. Push the project
- `git push -u origin main`## TODO
Note to self, populate this file with some more interesting information about the template and project structure of yoyoengine games.