summaryrefslogtreecommitdiff
path: root/src/KingSystem/Physics/RigidBody/physRigidBodyResource.h
blob: c83d2fa48d6a32267538f7012627fa8525d07596 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#pragma once

#include <resource/seadResource.h>

namespace ksys::phys {

class RigidBodyResource : public sead::DirectResource {
    SEAD_RTTI_OVERRIDE(RigidBodyResource, sead::DirectResource)

public:
    RigidBodyResource();
    ~RigidBodyResource() override;

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

}  // namespace ksys::phys