summaryrefslogtreecommitdiff
path: root/src/engine/editor/Handles.cpp
blob: 9074a2b459a3d90406bf9fa94baeb0e88994896c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include <libultraship/libultraship.h>
#include <libultra/gbi.h>

#include "Handles.h"

namespace Editor {
    Handles::Handles() {
        Pos = &pos;
        Rot = &rot;
    }

    void Handles::Load() {

    }

    void Handles::Tick() {

    }

    void Handles::Draw() {

    }
}