15 lines
289 B
C#
15 lines
289 B
C#
using UnityEngine;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Pinwheel.Griffin
|
|
{
|
|
//[CreateAssetMenu(menuName = "Griffin/Generic Container")]
|
|
public class GGenericContainer : ScriptableObject
|
|
{
|
|
public void Reset()
|
|
{
|
|
}
|
|
}
|
|
}
|