├── .github └── workflows │ └── simple-game-server-go.yml ├── .gitignore ├── CODEOWNERS ├── LICENSE ├── README.md ├── Third Party Notices.md ├── allocator-token-exchange ├── go.mod ├── go.sum ├── internal │ └── token │ │ └── token.go └── main.go ├── catalog-info.yaml ├── go.work ├── go.work.sum └── simple-game-server-go ├── .gitignore ├── .golangci.yml ├── .goreleaser.yml ├── Dockerfile ├── README.md ├── go.mod ├── go.sum ├── internal └── game │ ├── allocated.go │ ├── deallocated.go │ └── game.go ├── main.go └── main_test.go /.github/workflows/simple-game-server-go.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/multiplay-examples/HEAD/.github/workflows/simple-game-server-go.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .idea 3 | bin/ 4 | -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/multiplay-examples/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/multiplay-examples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/multiplay-examples/HEAD/README.md -------------------------------------------------------------------------------- /Third Party Notices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/multiplay-examples/HEAD/Third Party Notices.md -------------------------------------------------------------------------------- /allocator-token-exchange/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/multiplay-examples/HEAD/allocator-token-exchange/go.mod -------------------------------------------------------------------------------- /allocator-token-exchange/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/multiplay-examples/HEAD/allocator-token-exchange/go.sum -------------------------------------------------------------------------------- /allocator-token-exchange/internal/token/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/multiplay-examples/HEAD/allocator-token-exchange/internal/token/token.go -------------------------------------------------------------------------------- /allocator-token-exchange/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/multiplay-examples/HEAD/allocator-token-exchange/main.go -------------------------------------------------------------------------------- /catalog-info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/multiplay-examples/HEAD/catalog-info.yaml -------------------------------------------------------------------------------- /go.work: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/multiplay-examples/HEAD/go.work -------------------------------------------------------------------------------- /go.work.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/multiplay-examples/HEAD/go.work.sum -------------------------------------------------------------------------------- /simple-game-server-go/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/multiplay-examples/HEAD/simple-game-server-go/.gitignore -------------------------------------------------------------------------------- /simple-game-server-go/.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/multiplay-examples/HEAD/simple-game-server-go/.golangci.yml -------------------------------------------------------------------------------- /simple-game-server-go/.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/multiplay-examples/HEAD/simple-game-server-go/.goreleaser.yml -------------------------------------------------------------------------------- /simple-game-server-go/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/multiplay-examples/HEAD/simple-game-server-go/Dockerfile -------------------------------------------------------------------------------- /simple-game-server-go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/multiplay-examples/HEAD/simple-game-server-go/README.md -------------------------------------------------------------------------------- /simple-game-server-go/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/multiplay-examples/HEAD/simple-game-server-go/go.mod -------------------------------------------------------------------------------- /simple-game-server-go/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/multiplay-examples/HEAD/simple-game-server-go/go.sum -------------------------------------------------------------------------------- /simple-game-server-go/internal/game/allocated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/multiplay-examples/HEAD/simple-game-server-go/internal/game/allocated.go -------------------------------------------------------------------------------- /simple-game-server-go/internal/game/deallocated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/multiplay-examples/HEAD/simple-game-server-go/internal/game/deallocated.go -------------------------------------------------------------------------------- /simple-game-server-go/internal/game/game.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/multiplay-examples/HEAD/simple-game-server-go/internal/game/game.go -------------------------------------------------------------------------------- /simple-game-server-go/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/multiplay-examples/HEAD/simple-game-server-go/main.go -------------------------------------------------------------------------------- /simple-game-server-go/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/multiplay-examples/HEAD/simple-game-server-go/main_test.go --------------------------------------------------------------------------------