mirror of https://github.com/zeldaret/botw.git
ksys/phys: Add ClothResource stub
This commit is contained in:
parent
423eb84362
commit
293b231fd8
|
|
@ -93541,7 +93541,7 @@ Address,Quality,Size,Name
|
|||
0x000000710121cc30,O,000072,_ZN4ksys4phys10ClothParamD2Ev
|
||||
0x000000710121cc78,O,000004,_ZN4ksys4phys10ClothParamD0Ev
|
||||
0x000000710121cc7c,O,000004,_ZN4ksys4phys17ClothSubWindParamD0Ev
|
||||
0x000000710121cc80,U,000152,
|
||||
0x000000710121cc80,O,000152,_ZN4ksys4phys13ClothResourceC1Ev
|
||||
0x000000710121cd18,U,000356,
|
||||
0x000000710121ce7c,U,000036,
|
||||
0x000000710121cea0,U,000068,
|
||||
|
|
|
|||
|
Can't render this file because it is too large.
|
|
|
@ -1,6 +1,8 @@
|
|||
target_sources(uking PRIVATE
|
||||
Cloth/physClothParam.cpp
|
||||
Cloth/physClothParam.h
|
||||
Cloth/physClothResource.cpp
|
||||
Cloth/physClothResource.h
|
||||
|
||||
Ragdoll/physRagdollConfig.cpp
|
||||
Ragdoll/physRagdollConfig.h
|
||||
|
|
|
|||
|
|
@ -0,0 +1,7 @@
|
|||
#include "KingSystem/Physics/Cloth/physClothResource.h"
|
||||
|
||||
namespace ksys::phys {
|
||||
|
||||
ClothResource::ClothResource() = default;
|
||||
|
||||
} // namespace ksys::phys
|
||||
|
|
@ -0,0 +1,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
|
||||
Loading…
Reference in New Issue