You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Due to time constraints, I didn't figure out how to make the children of Entity call the non-default constructor of Entity.
ex: When I call Character character(0, 100), I want the character object to use Entity's Entity(int, int) constructor. Right now, it isn't, and I've taken the code from Entity(int, int) and placed it in all the other children. Inefficient, and prone to error.
The text was updated successfully, but these errors were encountered:
Due to time constraints, I didn't figure out how to make the children of Entity call the non-default constructor of Entity.
ex: When I call
Character character(0, 100)
, I want the character object to use Entity'sEntity(int, int)
constructor. Right now, it isn't, and I've taken the code fromEntity(int, int)
and placed it in all the other children. Inefficient, and prone to error.The text was updated successfully, but these errors were encountered: