mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
14 lines
236 B
Python
14 lines
236 B
Python
from typing import *
|
|
import enum
|
|
|
|
|
|
class Faction(enum.Enum):
|
|
RED = "🔴"
|
|
ORANGE = "🟠"
|
|
YELLOW = "🟡"
|
|
GREEN = "🟢"
|
|
BLUE = "🔵"
|
|
PURPLE = "🟣"
|
|
BLACK = "⚫️"
|
|
WHITE = "⚪️"
|
|
BROWN = "🟤"
|