18 lines
362 B
C#
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
|
|
}
|
|
|
|
|
|
} |