From c6e3869176d592fb90d2c6c8f21ffbdc17556129 Mon Sep 17 00:00:00 2001 From: DanielProl1xy Date: Tue, 30 Jan 2024 23:48:39 +0300 Subject: [PATCH] Spawn different objects withing level --- src/objects/Object.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/objects/Object.h b/src/objects/Object.h index 47be7165..b0ff7e49 100644 --- a/src/objects/Object.h +++ b/src/objects/Object.h @@ -15,7 +15,7 @@ public: bool shouldUpdate = true; public: - virtual ~Object() { destroyed(); } + ~Object() { destroyed(); } public: virtual void spawned() { }