render GetImage and replace Options prefix to Args

This commit is contained in:
2023-07-06 01:20:23 +02:00
parent 731548ef86
commit 701205ac82
17 changed files with 61 additions and 52 deletions

View File

@@ -18,10 +18,10 @@ type DomainInterface interface {
RemoveFromInventory(item *Item) bool
UseInventoryItem(item *Item) bool
Process(DomainProcessOptions)
Process(DomainProcessArgs)
}
type DomainProcessOptions struct {
type DomainProcessArgs struct {
Level *Level
KContext *KContext
}