initial commit

This commit is contained in:
2023-06-27 20:17:48 +02:00
commit f2b64d4d05
11 changed files with 232 additions and 0 deletions

15
controller/controller.go Normal file
View File

@@ -0,0 +1,15 @@
package controller
import "game/domain"
type Controller struct {
Context domain.Context
}
func (c Controller) Init() {
}
func (c Controller) Start() {
}