Files
ichni_Official/Assets/Scripts/Game/GameElements/Notes/NoteEffects/NoteEffectBase.cs
SoulliesOfficial d4e860fa16 initial
2025-06-03 02:42:28 -04:00

30 lines
613 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
{
public NoteBase note;
public NoteVisualBase noteVisual;
}
namespace Beatmap
{
public abstract class NoteEffectBase_BM : EffectBase_BM
{
public NoteEffectBase_BM()
{
}
public NoteEffectBase_BM(float effectTime) : base(effectTime)
{
}
}
}
}