https://github.com/selfup/mgt2d
Just testing things out!
https://github.com/selfup/mgt2d
Last synced: 10 months ago
JSON representation
Just testing things out!
- Host: GitHub
- URL: https://github.com/selfup/mgt2d
- Owner: selfup
- License: mit
- Created: 2020-04-20T22:54:21.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-05-20T00:14:45.000Z (about 6 years ago)
- Last Synced: 2025-06-01T07:54:53.732Z (about 1 year ago)
- Language: C#
- Size: 57.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Mono Game Template 2D
Just trying to figure out how this all works.
## Setup
### deps
Make sure to have dotnet 3.1 installed: https://dotnet.microsoft.com/download
Mono will be required for the build pipeline: https://www.mono-project.com/docs/getting-started/install/
If on macOS and using bash, update your PATH in your `$HOME/.bash_profile`:
```bash
# Mono path - MonoGame dependency
export PATH=/Library/Frameworks/Mono.framework/Versions/Current/bin/:${PATH}
```
Now reload your bash_profile: `source $HOME/.bash_profile`
_On Catalina you will more than likey need to do this in your `$HOME/.zprofile`_
### install libraries
In this repo: `dotnet restore`
### run
In this repo: `dotnet run`
### watch
In this repo: `dotnet watch run`