-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstructs.py
35 lines (26 loc) · 869 Bytes
/
structs.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# Structs for passing data around
from typing import Optional
from interactions.client.enums import ButtonStyle
class OptionStruct:
def __init__(
self,
text: str,
button_text: Optional[str] = "",
text_emoji_name: Optional[str] = None,
button_emoji_name: Optional[str] = None,
button_emoji_id: Optional[str] = None,
color: Optional[int] = ButtonStyle.SECONDARY):
self.text = text
self.text_emoji_name = text_emoji_name
self.button_text = button_text
self.button_emoji_name = button_emoji_name
self.button_emoji_id = button_emoji_id
self.color = color
realm_translation = {
"cfc3": "CFC Build/Kill",
"cfcrp": "CFC DarkRP",
"cfcttt": "CFC TTT",
"discord": "Discord",
"meta": "Meta",
"web": "Website",
}