X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Faction.cpp;h=de3b08a1e3c1bde940a3bc36632ccba359d25b6f;hb=2128f0eff817490e4d86ef921ac346775c62348a;hp=f67bb28b517b136670e9d3e6fbd4a57786328424;hpb=da21a5a971c2dfa3fdd729c4f799908253bb3873;p=libs%2Fdemoscene.git diff --git a/source/action.cpp b/source/action.cpp index f67bb28..de3b08a 100644 --- a/source/action.cpp +++ b/source/action.cpp @@ -1,5 +1,8 @@ #include "action.h" +namespace Msp { +namespace DemoScene { + InterpolationAction::InterpolationAction(Mode m): mode(m), start_beat(0), @@ -35,3 +38,12 @@ void InterpolationAction::end(float) { interpolate(1.0f, 0.0f); } + + +Action::Loader::Loader(Action &a, Demo &d): + DataFile::ObjectLoader(a), + demo(d) +{ } + +} // namespace DemoScene +} // namespace Msp