From d8144c22c1a6db0893a412f1b07a1bdff19b8647 Mon Sep 17 00:00:00 2001 From: Mootfrost777 Date: Fri, 16 Aug 2024 23:31:09 +0300 Subject: [PATCH] Add door --- ZoFo/GameCore/GameObjects/Entities/Interactables/Door.cs | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 ZoFo/GameCore/GameObjects/Entities/Interactables/Door.cs diff --git a/ZoFo/GameCore/GameObjects/Entities/Interactables/Door.cs b/ZoFo/GameCore/GameObjects/Entities/Interactables/Door.cs new file mode 100644 index 0000000..06bdec5 --- /dev/null +++ b/ZoFo/GameCore/GameObjects/Entities/Interactables/Door.cs @@ -0,0 +1,8 @@ +namespace ZoFo.GameCore.GameObjects.Entities.Interactables; + +public class Door +{ + public bool isOpened; + + +} \ No newline at end of file