Files
ichni_Official/Assets/Scripts/Game/GameElements/Notes/NoteEffects/NoteEffectBase.cs
SoulliesOfficial 7580c4d87c 大更
2026-03-14 03:13:10 -04:00

18 lines
362 B
C#

using System;
using System.Collections;
using System.Collections.Generic;
using Ichni.RhythmGame.Beatmap;
using UnityEngine;
namespace Ichni.RhythmGame
{
public abstract class NoteEffectBase : EffectBase
{
#region [] Core References
public NoteBase note;
public NoteVisualBase noteVisual;
#endregion
}
}