15 lines
246 B
C#
15 lines
246 B
C#
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using UnityEngine;
|
||
|
using RPGCreationKit;
|
||
|
|
||
|
namespace RPGCreationKit
|
||
|
{
|
||
|
public class RckDatabase : ScriptableObject
|
||
|
{
|
||
|
public virtual void fill()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
}
|
||
|
}
|