21 lines
452 B
C#
21 lines
452 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
namespace Ichni.RhythmGame
|
|
{
|
|
public abstract class SubmoduleBase
|
|
{
|
|
public BaseElement attachedElement;
|
|
|
|
public SubmoduleBase(BaseElement attachedElement)
|
|
{
|
|
this.attachedElement = attachedElement;
|
|
}
|
|
|
|
public virtual void InitialRefresh()
|
|
{
|
|
|
|
}
|
|
}
|
|
} |