(self, name="", filename="", linear_mapping=0)
| 20 | |
| 21 | class Image(Struct): |
| 22 | def __init__(self, name="", filename="", linear_mapping=0): |
| 23 | Struct.__init__(self, "CDataImage") |
| 24 | self.name = String(name) |
| 25 | self.filename = String(filename) |
| 26 | self.flag = Int(linear_mapping) |
| 27 | self.id = TextureHandle() |
| 28 | |
| 29 | |
| 30 | class SpriteSet(Struct): |
nothing calls this directly
no test coverage detected