Skip to content

Instantly share code, notes, and snippets.

@AlexYukikaze
AlexYukikaze / example.py
Last active November 22, 2016 09:30
World of Tanks remote REPL console for interactive debugging
from mods.remote import create_terminal
from gui import SystemMessages
def add_info(text):
SystemMessages.pushMessage(text, type=SystemMessages.SM_TYPE.Information)
def add_warning(text):
SystemMessages.pushMessage(text, type=SystemMessages.SM_TYPE.Warning)