Added more emojis.

This commit is contained in:
Storm Dragon
2025-07-17 11:11:06 -04:00
parent 8c668cc0cc
commit b68a28e857
56 changed files with 1371 additions and 58 deletions

View File

@ -0,0 +1,22 @@
class command():
def initialize(self, environment):
self.env = environment
self.emoji = "🇩🇰"
def shutdown(self):
pass
def setCallback(self, callback):
pass
def getDescription(self):
return "Add Denmark flag emoji to clipboard"
def run(self):
self.env["runtime"]["MemoryManager"].add_value_to_first_index(
"clipboardHistory", self.emoji
)
self.env["runtime"]["OutputManager"].present_text(
"Added Denmark flag to clipboard",
interrupt=False, flush=False
)