Pull up TransformHandler.

This commit is contained in:
2023-04-20 11:36:38 +08:00
parent d6208f19fb
commit 61b72107ae
6 changed files with 156 additions and 135 deletions

View File

@@ -1,16 +1,16 @@
using Cryville.Audio.Source;
using Cryville.Crtr.Event;
using System;
using System.Collections.Generic;
using System.IO;
namespace Cryville.Crtr {
public class ChartHandler : ContainerHandler {
public Chart chart;
public class ChartHandler : TransformHandler {
protected override TransformHandler Parent { get { return null; } }
Chart chart;
readonly List<LibavFileAudioSource> sounds = new List<LibavFileAudioSource>();
public ChartHandler(Chart _chart, DirectoryInfo dir) : base() {
if (dir == null) throw new ArgumentNullException("dir");
public ChartHandler(Chart _chart) {
chart = _chart;
}