Some game thing
 
 
 
 
Go to file
Sean Hickey 34e3635f86 Add basic SDL setup.
Add basic SDL rendering.
Add config parsing.
Add readme, license, and setup docs.

Builds successfully on Windows surprisingly.
2022-09-28 00:05:06 -07:00
config Add basic SDL setup. 2022-09-28 00:05:06 -07:00
docs/setup Add basic SDL setup. 2022-09-28 00:05:06 -07:00
.gitignore Add basic SDL setup. 2022-09-28 00:05:06 -07:00
LICENSE.md Add basic SDL setup. 2022-09-28 00:05:06 -07:00
Makefile Add basic SDL setup. 2022-09-28 00:05:06 -07:00
README.md Add basic SDL setup. 2022-09-28 00:05:06 -07:00
game.conf Add basic SDL setup. 2022-09-28 00:05:06 -07:00
go.mod Add basic SDL setup. 2022-09-28 00:05:06 -07:00
go.sum Add basic SDL setup. 2022-09-28 00:05:06 -07:00
main.go Add basic SDL setup. 2022-09-28 00:05:06 -07:00

README.md

Project Ely

This is some game project that we are working on for fun.

This project is written in Go using SDL2.

Compiling

You can use the Makefile:

make release

Or you can build the project easily with Go directly:

go build

A release build can be build with these extra flags:

go build -x -v -ldflags "-s -w"

Running

You may need the SDL2 libraries in order to run the resulting binary. Copy the SDL2 *.dll or *.so files into the same directory as the output executable and run the program.

Docs

For initial environment setup, see the Setup Docs.

License

This project is licensed under the 2-Clause BSD license, a permissive open-source license. See LICENSE.md for more details.