(self, itemID, amount=None, state=None, abilities=None)
| 220 | class FighterInfo: |
| 221 | |
| 222 | def __init__(self, itemID, amount=None, state=None, abilities=None): |
| 223 | self.itemID = itemID |
| 224 | self.amount = amount |
| 225 | self.state = state |
| 226 | self.abilities = abilities |
| 227 | |
| 228 | @classmethod |
| 229 | def fromFighter(cls, fighter): |
nothing calls this directly
no outgoing calls
no test coverage detected