DomainProcess skeleton

This commit is contained in:
2023-07-05 21:45:23 +02:00
parent d61a491731
commit 7864282f02
3 changed files with 21 additions and 1 deletions

View File

@@ -17,4 +17,11 @@ type DomainInterface interface {
AddToInventory(item *Item) bool
RemoveFromInventory(item *Item) bool
UseInventoryItem(item *Item) bool
Process(DomainProcessOptions)
}
type DomainProcessOptions struct {
Level *Level
KContext *KContext
}