Eric's junky C# pong clone.
This project assumes you've got mono
. You should probably see a doctor.
- Clone the repo and cd into the project directory.
nuget restore
to install packages.- In your editor, run your build. (TODO: Figure out the command to run from the command line and stick it in the
Makefile
) - Run tests with
make test
, or with your sweet editor's "run tests" command. - Once built, you can run with
mono pong/obj/Debug/pong.exe
(TODO: this would also go in theMakefile
were I to figure out the build command that needs to come before it)