mirror of
https://github.com/zeldaret/botw
synced 2026-07-29 07:32:36 -04:00
ksys/phys: Add ClothResource stub
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user