diff options
author | crupest <crupest@outlook.com> | 2018-11-07 21:40:04 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2018-11-07 21:40:04 +0800 |
commit | efdce672123284847bd7fb6f12ac1ec96f28f3ef (patch) | |
tree | 298e6313e9a48c5867b2355242b78d3cd23fdc61 /src/ui/animations | |
parent | 634dab6ad2c9e4675beacfb77ac02b2d43cab132 (diff) | |
download | cru-efdce672123284847bd7fb6f12ac1ec96f28f3ef.tar.gz cru-efdce672123284847bd7fb6f12ac1ec96f28f3ef.tar.bz2 cru-efdce672123284847bd7fb6f12ac1ec96f28f3ef.zip |
Make all header *.hpp .
Diffstat (limited to 'src/ui/animations')
-rw-r--r-- | src/ui/animations/animation.cpp | 2 | ||||
-rw-r--r-- | src/ui/animations/animation.hpp (renamed from src/ui/animations/animation.h) | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/ui/animations/animation.cpp b/src/ui/animations/animation.cpp index ca0fe8bc..33c743cf 100644 --- a/src/ui/animations/animation.cpp +++ b/src/ui/animations/animation.cpp @@ -1,4 +1,4 @@ -#include "animation.h" +#include "animation.hpp" #include <utility> diff --git a/src/ui/animations/animation.h b/src/ui/animations/animation.hpp index 91a666c9..99389f33 100644 --- a/src/ui/animations/animation.h +++ b/src/ui/animations/animation.hpp @@ -2,9 +2,9 @@ #include <unordered_map> -#include "base.h" -#include "application.h" -#include "timer.h" +#include "base.hpp" +#include "application.hpp" +#include "timer.hpp" namespace cru::ui::animations { |