| 32 | } |
| 33 | |
| 34 | const lcf::rpg::Item* Window_Item::GetItem() const { |
| 35 | if (index < 0) { |
| 36 | return nullptr; |
| 37 | } |
| 38 | |
| 39 | return lcf::ReaderUtil::GetElement(lcf::Data::items, data[index]); |
| 40 | } |
| 41 | |
| 42 | bool Window_Item::CheckInclude(int item_id) { |
| 43 | if (data.size() == 0 && item_id == 0) { |
no outgoing calls
no test coverage detected