SimpleSplash.hpp
Go to the documentation of this file.
1 #pragma once
2 
4 
5 namespace iv
6 {
7 
16 class SimpleSplash : public Slot, public DelayedLoader
17 {
18 public:
20  SimpleSplash( Instance * inst );
21 
22 protected:
23  virtual void LoadStart() override;
24  virtual void LoadFinish() override;
25 
26 private:
27  AnimHeap anim;
28  AnimNode< bool > * in_enabled;
29  Lambda_Connector * lambda;
30 };
31 
32 }