feat: Added Mds class

This commit is contained in:
AURUMVORXX
2024-11-09 04:03:33 +03:00
parent 58ec459ea5
commit 0b89806626
9 changed files with 109 additions and 15 deletions

View File

@@ -12,5 +12,6 @@ from g2o.classes.items import ItemGround
from g2o.classes.items import ItemsGround
from g2o.classes.daedalus import Daedalus
from g2o.classes.sky import Sky
from g2o.classes.mds import Mds
from sqg2oconst import *
from sqg2oconst import *

11
g2o/classes/mds.py Normal file
View File

@@ -0,0 +1,11 @@
import sqg2o
class Mds:
@staticmethod
def id(mdsName : str) -> int:
return sqg2o.Mds.id(mdsName)
@staticmethod
def name(mdsId : id) -> str:
return sqg2o.Mds.name(mdsId)