move source files to src

This commit is contained in:
2023-07-08 12:20:34 +02:00
parent 6028c5770f
commit e5c2294f6c
43 changed files with 23 additions and 21 deletions

View File

@@ -0,0 +1,25 @@
package easy_ebitengine
import (
"game/src/konstructor"
"github.com/hajimehoshi/ebiten"
)
func (e *Engine) InventoryUpdate() {
}
func (e *Engine) InventoryDraw(screen *ebiten.Image) {
}
func (e *Engine) AddToInventory(item *konstructor.Item) {
e.Domain.AddToInventory(item)
}
func (e *Engine) RemoveFromInventory(item *konstructor.Item) {
e.Domain.RemoveFromInventory(item)
}
func (e *Engine) UseInventoryItem(item *konstructor.Item) {
e.Domain.UseInventoryItem(item)
}