source: framspy/gui/visual/modelData.py @ 1198

Last change on this file since 1198 was 1198, checked in by Maciej Komosinski, 15 months ago

Added simple Python GUI for Framsticks library/server

File size: 262 bytes
Line 
1from gui.visual.rawModel import RawModel
2from gui.visual.modelTexture import ModelTexture
3
4class 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.