13 lines
259 B
C#
13 lines
259 B
C#
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using AYellowpaper.SerializedCollections;
|
||
|
using UnityEngine;
|
||
|
|
||
|
namespace BITKit.Entities
|
||
|
{
|
||
|
public class SlotComponent : EntityComponent
|
||
|
{
|
||
|
public SerializedDictionary<string,Transform> slots;
|
||
|
}
|
||
|
}
|