source:
framspy/gui/visual/modelData.py
@
1290
Last change on this file since 1290 was 1198, checked in by , 22 months ago | |
---|---|
File size: 262 bytes |
Line | |
---|---|
1 | from gui.visual.rawModel import RawModel |
2 | from gui.visual.modelTexture import ModelTexture |
3 | |
4 | class ModelData: |
5 | def __init__(self, rawModel: RawModel, modelTexture: ModelTexture) -> None: |
6 | self.rawModel = rawModel |
7 | self.texture = modelTexture |
Note: See TracBrowser
for help on using the repository browser.