mirror of
https://notabug.org/scuti/lib3ddevil1
synced 2024-11-22 05:42:59 +05:30
Fixed missing colon at fn define
This commit is contained in:
parent
cb96add3f2
commit
a2d4aaae11
@ -327,6 +327,7 @@ class GEOHeader:
|
|||||||
devil1geo.printheader(self.cstruct)
|
devil1geo.printheader(self.cstruct)
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
|
||||||
class MEShHeader:
|
class MEShHeader:
|
||||||
def __init__(self, i, filedata):
|
def __init__(self, i, filedata):
|
||||||
self.cstruct = ctypes.pointer(MeshHeader())
|
self.cstruct = ctypes.pointer(MeshHeader())
|
||||||
@ -345,7 +346,7 @@ class MEShHeader:
|
|||||||
def getnumvertex(self):
|
def getnumvertex(self):
|
||||||
return self.cstruct.contents.numVertex
|
return self.cstruct.contents.numVertex
|
||||||
|
|
||||||
def getunknown(self)
|
def getunknown(self):
|
||||||
return hex(self.cstruct.contents.u)
|
return hex(self.cstruct.contents.u)
|
||||||
|
|
||||||
def getoffsetbatches(self):
|
def getoffsetbatches(self):
|
||||||
|
Loading…
Reference in New Issue
Block a user