Files
PyG2O/g2o/daedalus.py
AURUMVORXX f4ec811163 feat: Added Daedalus class
+ sqParseTable moved to nonut::CustomTypes as SqDict
+ fix: Removed Python constructors for ItemGround and DamageDescription classes (so it's unable to make new objects in the scripts)
2024-11-06 23:59:54 +03:00

15 lines
342 B
Python

import sqg2o
class Daedalus:
@staticmethod
def index(value : str) -> int:
return sqg2o.Daedalus.index(value)
@staticmethod
def symbol(value : str) -> dict:
return sqg2o.Daedalus.symbol(value)
@staticmethod
def instance(value : str) -> dict:
return sqg2o.Daedalus.instance(value)