| 77 | } |
| 78 | |
| 79 | bool ItemInfo::TestFlags(int id, short flags) const |
| 80 | { |
| 81 | if (id < 0 || id > 7) |
| 82 | return false; |
| 83 | |
| 84 | return (ItemFlags[id] & flags) != 0; |
| 85 | } |
| 86 | |
| 87 | bool ItemInfo::TestFlagField(int id, short flags) const |
| 88 | { |
no outgoing calls
no test coverage detected