feat: add initial code

This commit is contained in:
2025-07-27 23:35:04 +02:00
commit be73abca63
9 changed files with 871 additions and 0 deletions

16
Makefile Normal file
View File

@ -0,0 +1,16 @@
SRCS != find ./ -type f -name '*.go'
GO ?= go
BIN_DIR ?= bin
BIN_NAME ?= urbanterror-agones
bin: ${SRCS}
${GO} build -o ${BIN_DIR}/${BIN_NAME} ./cmd/urbanterror-agones/
test: bin
${GO} test ./...
run: bin
${BIN_DIR}/${BIN_NAME}
.PHONY: test run