Clean-up and README

This commit is contained in:
KuMiShi
2026-01-30 16:31:38 +01:00
parent 351f676611
commit f2f8af3aec
11 changed files with 38 additions and 22 deletions

View File

@@ -1,6 +1,6 @@
# Game imports
from serializable import Serializable
from items.item import Item
from utils.serializable import Serializable
from utils.item import Item
# Native imports
import uuid

View File

@@ -1,3 +1,4 @@
# Game imports
from entities.entity import Entity
class NPC(Entity):

View File

@@ -1,3 +1,4 @@
# Game imports
from entities.entity import Entity
class Player(Entity):