summaryrefslogtreecommitdiff
path: root/libs/revolution/src/homebuttonLib/HBMAnmController.h
blob: 70621ee5d6d152c06dc421a3772727335a9009cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#ifndef HOMEBUTTON_ANM_CONTROLLER_H
#define HOMEBUTTON_ANM_CONTROLLER_H

#include "HBMFrameController.h"

namespace nw4hbm {
    namespace lyt {
        class AnimTransform;
        class Group;
    }  // namespace lyt
}  // namespace nw4hbm

namespace homebutton {

    class GroupAnmController : public FrameController {
    public:
        /* 0x00 (base) */
        /* 0x20 */ nw4hbm::lyt::Group* mpGroup;
        /* 0x24 */ nw4hbm::lyt::AnimTransform* mpAnimGroup;

        GroupAnmController();
        virtual ~GroupAnmController();

        void do_calc();
    };  // size = 0x28

}  // namespace homebutton

#endif