(self, name="")
| 71 | |
| 72 | class Animation(Struct): |
| 73 | def __init__(self, name=""): |
| 74 | Struct.__init__(self, "CAnimation") |
| 75 | self.name = String(name) |
| 76 | self.body = AnimSequence() |
| 77 | self.back_foot = AnimSequence() |
| 78 | self.front_foot = AnimSequence() |
| 79 | self.attach = AnimSequence() |
| 80 | |
| 81 | |
| 82 | class WeaponSpec(Struct): |
nothing calls this directly
no test coverage detected