diff options
Diffstat (limited to 'src/components.rs')
-rw-r--r-- | src/components.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/components.rs b/src/components.rs index 8bb2bff..0a52560 100644 --- a/src/components.rs +++ b/src/components.rs @@ -11,9 +11,12 @@ pub struct Tooltip(pub String); /// A marker component for entities spawned by dirworld handlers, i.e. they should be removed when the room changes. #[derive(Component, Clone, Debug)] pub struct DirworldEntity { + /// Path on filesystem corresponding to this entity pub path: PathBuf, + /// Extracted payload if present pub payload: Option<DirworldEntityPayload>, } +/// Marker component that prevents an entity from despawning on room change #[derive(Debug, Component)] pub struct Persist; |