mirror of
https://github.com/MilkBarModding/MilkBarLauncher.git
synced 2025-06-16 12:11:01 +00:00
19 lines
184 B
C++
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;
|
|
|
|
};
|
|
|
|
} |