Returns the amount of fuel given for buring this item stack in an engine @return an integer representing the amount of fuel in the entire stack
| 153 | // |
| 154 | // @return an integer representing the amount of fuel in the entire stack |
| 155 | unsigned LuaBindings::ItemCallbacks::fuelAmount(Item* item) { |
| 156 | return item->instanceValue("fuelAmount", 0).toUInt(); |
| 157 | } |
| 158 | |
| 159 | // Returns the iconDrawables for this item serialized into json |
| 160 | // |
nothing calls this directly
no test coverage detected