18 lines
446 B
C#
18 lines
446 B
C#
using System;
|
|
using Sirenix.OdinInspector;
|
|
using VOID.Generic.Dict;
|
|
|
|
namespace VOID.Generic.Objects.Armor
|
|
{
|
|
[Serializable]
|
|
public class ArmorObjectData : ObjectComponent<ArmorObject>
|
|
{
|
|
[Title("Basic")]
|
|
[Required] public ArmorType armorType;
|
|
[Required] public ArmorSubType armorSubType;
|
|
|
|
[Title("Visual")]
|
|
public bool hideTopUnderwear;
|
|
public bool hideBottomUnderwear;
|
|
}
|
|
} |