14 lines
321 B
Python
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 = "" |