diff options
author | crupest <crupest@outlook.com> | 2018-09-19 01:15:01 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2018-09-19 01:15:01 +0800 |
commit | 85bb4d466efeb2540363065d7c0987a9d60f70e9 (patch) | |
tree | ea5e5aa738afb37a2d3bc4e74f9be64c15f3d188 /CruUI/application.h | |
parent | 4710715102df3806479985679bd8048631ccaab5 (diff) | |
download | cru-85bb4d466efeb2540363065d7c0987a9d60f70e9.tar.gz cru-85bb4d466efeb2540363065d7c0987a9d60f70e9.tar.bz2 cru-85bb4d466efeb2540363065d7c0987a9d60f70e9.zip |
finish animation!!!
Diffstat (limited to 'CruUI/application.h')
-rw-r--r-- | CruUI/application.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/CruUI/application.h b/CruUI/application.h index a0229bfa..fe7422d3 100644 --- a/CruUI/application.h +++ b/CruUI/application.h @@ -15,7 +15,7 @@ namespace cru class WindowClass; class WindowManager; - namespace animations + namespace animations::details { class AnimationManager; } @@ -86,7 +86,7 @@ namespace cru return timer_manager_.get(); } - ui::animations::AnimationManager* GetAnimationManager() const + ui::animations::details::AnimationManager* GetAnimationManager() const { return animation_manager_.get(); } @@ -107,12 +107,12 @@ namespace cru std::unique_ptr<ui::WindowManager> window_manager_; std::unique_ptr<graph::GraphManager> graph_manager_; std::unique_ptr<TimerManager> timer_manager_; - std::unique_ptr<ui::animations::AnimationManager> animation_manager_; + std::unique_ptr<ui::animations::details::AnimationManager> animation_manager_; std::unique_ptr<GodWindow> god_window_; }; - using InvokeLaterAction = Action<>; + using InvokeLaterAction = Function<void()>; void InvokeLater(InvokeLaterAction&& action); } |