Hello,
I'm having a bit of trouble with inheritance I was hoping one of you could help with.
I have a base clase; BaseGameEntity.
There are two classes which inherit from this, Drop and DropGuide.
I have an entity manager that stores all of the instance of Drop/DropGuide in a List<BaseGameEntity>.
The problem is when I use access an element in this list I can only seem to get to the "BaseGameEntity" parts of the object, how from there do I access the Drop/DropGuide that inherit from it?