BITFALL/Assets/BITKit/Unity/Scripts/Entity/Components/Slots/SlotComponent.cs

13 lines
257 B
C#

using System.Collections;
using System.Collections.Generic;
using AYellowpaper.SerializedCollections;
using UnityEngine;
namespace BITKit.Entities
{
public class SlotBehavior : EntityBehavior
{
public SerializedDictionary<string,Transform> slots;
}
}