summaryrefslogtreecommitdiff
path: root/src/KingSystem/World/worldWindMgr.h
blob: a87b805ea1121efedf1e2ade955adc1130bb0f89 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#pragma once

#include "KingSystem/Utils/Types.h"
#include "KingSystem/World/worldJob.h"

namespace ksys::world {

// TODO
class WindMgr : public Job {
public:
    WindMgr();

    JobType getType() const override { return JobType::Wind; }

    u8 _20[0x138 - 0x20];
};
KSYS_CHECK_SIZE_NX150(WindMgr, 0x138);

}  // namespace ksys::world