Files
ichni_Creator_Studio/Assets/Scripts/GameElements/Notes/NoteVisual/NoteVisualBase.cs
SoulliesOfficial bc1c5d65ef 基础内容-8
添加BM存档类
2025-02-02 21:59:43 -05:00

17 lines
408 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace Ichni.RhythmGame
{
public abstract class NoteVisualBase : SubstantialObject
{
public NoteBase note;
public GameObject noteMain;
public GameObject judgeEffect;
public List<GameObject> notePartList;
public List<GameObject> effectPartList;
}
}