fix: add back public visibility specifier for Entity

This commit is contained in:
Tropical 2026-03-25 16:00:13 -05:00
parent 29c0185553
commit 22671562ca

View file

@ -36,7 +36,7 @@ class Entity : public std::enable_shared_from_this<Entity> {
friend class Gui; // 4J Stu - Added to be able to access the shared flag
// functions and constants, without making them publicly
// available to everything
public:
// 4J-PB - added to replace (e instanceof Type), avoiding dynamic casts
virtual eINSTANCEOF GetType() = 0;