UndertaleEngine
UndertaleEngine copied to clipboard
Item system redesign?
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.