14 lines
253 B
C#
14 lines
253 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
namespace Ichni.RhythmGame
|
|
{
|
|
public abstract class SubmoduleBase
|
|
{
|
|
public virtual void InitialRefresh()
|
|
{
|
|
|
|
}
|
|
}
|
|
} |