BoTW-Multiplayer/DLL/InjectDLL/CharacterEquipment.h
2025-01-20 14:05:21 -06:00

19 lines
184 B
C++

#pragma once
namespace DataTypes
{
class CharacterEquipment
{
public:
byte WType;
short Sword;
short Shield;
short Bow;
short Head;
short Upper;
short Lower;
};
}