TSAGE: Added proper cursor showing when the scene changes

This commit is contained in:
Paul Gilbert 2011-02-23 22:16:02 +11:00
parent 814678b24e
commit 7a5b633bf9
2 changed files with 8 additions and 0 deletions

View file

@ -118,6 +118,12 @@ public:
Fn(*i);
}
void clear2() {
for (typename List<T>::iterator i = this->begin(); i != this->end(); ++i)
delete *i;
Common::List<T>::clear();
}
void synchronise(Serialiser &s) {
int entryCount;