An open API service indexing awesome lists of open source software.

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!

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`