X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fyoink;a=blobdiff_plain;f=src%2FMoof%2FTransition.hh;h=dfc2602ec988bbe3bb6fd692a2cd56bd86ed036e;hp=f200729ec6bba01bde3ab802f7313fcaf16eefc6;hb=987971a961454d97082c6448fdc0bbeb540281bb;hpb=be9ebc1104574e5e81e19c5caba0c23b54df826d diff --git a/src/Moof/Transition.hh b/src/Moof/Transition.hh index f200729..dfc2602 100644 --- a/src/Moof/Transition.hh +++ b/src/Moof/Transition.hh @@ -31,7 +31,7 @@ #include -#include +#include #include #include #include @@ -66,9 +66,9 @@ public: } - void poppedFromEngine() + void removedFromCore() { - if (mTo) engine.push(mTo); + if (mTo) core.push(mTo); } void update(Scalar t, Scalar dt) @@ -81,7 +81,7 @@ public: if (mInterp.isDone()) { // to should /replace/ this - engine.pop(this); + core.pop(this); } }