mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-14 19:29:36 +01:00
22 lines
766 B
C#
22 lines
766 B
C#
using SS14.Shared;
|
|
|
|
namespace SS14.Client.GameObjects
|
|
{
|
|
public class HumanEquipmentComponent : EquipmentComponent
|
|
{
|
|
public HumanEquipmentComponent()
|
|
{
|
|
//These shit lines allow the fucking shit to be added to the shit
|
|
ActiveSlots.Add(EquipmentSlot.Back);
|
|
ActiveSlots.Add(EquipmentSlot.Belt);
|
|
ActiveSlots.Add(EquipmentSlot.Ears);
|
|
ActiveSlots.Add(EquipmentSlot.Eyes);
|
|
ActiveSlots.Add(EquipmentSlot.Feet);
|
|
ActiveSlots.Add(EquipmentSlot.Hands);
|
|
ActiveSlots.Add(EquipmentSlot.Head);
|
|
ActiveSlots.Add(EquipmentSlot.Inner);
|
|
ActiveSlots.Add(EquipmentSlot.Mask);
|
|
ActiveSlots.Add(EquipmentSlot.Outer);
|
|
}
|
|
}
|
|
} |