PINK: no sense in clearing array of actions in actor dtor

This commit is contained in:
Andrei Prykhodko 2020-06-04 21:24:59 +03:00
parent c6450e49ce
commit b5c807b459

View File

@ -38,8 +38,6 @@ Actor::~Actor() {
for (uint i = 0; i < _actions.size(); ++i) {
delete _actions[i];
}
_actions.clear();
}
void Actor::deserialize(Archive &archive) {