Files
ichni_Creator_Studio/Assets/Scripts/Base/GeneralSubmodules/SubmoduleBase.cs
SoulliesOfficial 5f64c4faf8 基础内容-6
技术性调整;
Note效果;
2025-01-30 22:45:33 -05:00

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()
{
}
}
}