UndertaleEngine icon indicating copy to clipboard operation
UndertaleEngine copied to clipboard

Item system redesign?

Open TML233 opened this issue 2 years ago • 0 comments

Items don't actually need an object. They can be achieved using structs. Current object-based item system doesn't work very well if you only need to get some data from the item, like name and price. It will create an instance of the item object, get the data and instantly destroy it, which is not very efficient and elegant.

TML233 avatar Dec 16 '23 17:12 TML233