Files
Wyvern-Castle/events/event.py
2026-01-29 16:55:45 +01:00

14 lines
321 B
Python

# Game imports
from serializable import Serializable
from entities.entity import Entity
# Native imports
import json
import uuid
class Event(Serializable):
def __init__(self, location:str):
super().__init__()
self.id = str(uuid.uuid4())
self.location = location
self.description = ""