예제 #1
0
파일: wrap.py 프로젝트: Zwork101/Dazzle
 def POS(self, x: int = 1, y: int = 1):
     return t(super().POS(x, y))
예제 #2
0
파일: wrap.py 프로젝트: Zwork101/Dazzle
def code_to_chars(code: int) -> t:
    return t(colorama.ansi.code_to_chars(code))
예제 #3
0
파일: wrap.py 프로젝트: Zwork101/Dazzle
 def BACK(self, n: int = 1):
     return t(super().BACK(n))
예제 #4
0
파일: wrap.py 프로젝트: Zwork101/Dazzle
 def FORWARD(self, n: int = 1):
     return t(super().FORWARD(n))
예제 #5
0
파일: wrap.py 프로젝트: Zwork101/Dazzle
 def DOWN(self, n: int = 1):
     return t(super().DOWN(n))
예제 #6
0
파일: wrap.py 프로젝트: Zwork101/Dazzle
 def UP(self, n: int = 1):
     return t(super().UP(n))
예제 #7
0
파일: wrap.py 프로젝트: Zwork101/Dazzle
 def __init__(self):
     super().__init__()
     for name, value in self.__dict__.items():
         if not name.startswith('_'):
             setattr(self, name, t(value))