1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-08-28 00:12:18 +00:00

ru:: added missing entity destructor

This commit is contained in:
Zeno Rogue 2025-05-24 18:10:37 +02:00
parent 5610629037
commit 6fa502c4e9

View File

@ -185,6 +185,7 @@ template<class T> struct statarray : array<T, qstat> {
};
struct entity {
virtual ~entity() {}
virtual xy siz() = 0;
xy where, vel;
bool existing;