summaryrefslogtreecommitdiff
path: root/src/KingSystem/Physics/Cloth/physClothResource.h
blob: b849a49aecf26dffb9fb97cea8d32956efe89a00 (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
#pragma once

#include <prim/seadSafeString.h>
#include <resource/seadResource.h>

namespace ksys::phys {

class ClothResource : public sead::DirectResource {
public:
    ClothResource();
    ~ClothResource() override;

    void doCreate_(u8* buffer, u32 bufferSize, sead::Heap* heap) override;

private:
    void* _20{};
    int _28{};
    void* _30{};
    int _38{};
    void* _40{};
    u8 _48{};
    sead::FixedSafeString<128> _50;
};

}  // namespace ksys::phys