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

19
presenter/presenter.go Normal file
View File

@@ -0,0 +1,19 @@
package presenter
import "game/domain"
type Presenter struct {
Context domain.Context
}
func (p Presenter) Init() {
}
func (p Presenter) Start() {
}
func (p Presenter) Process() {
}