16 lines
332 B
C#
16 lines
332 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
namespace Ichni.RhythmGame
|
|
{
|
|
public abstract class TrackSubmodule : SubmoduleBase
|
|
{
|
|
public Track track;
|
|
|
|
public TrackSubmodule(Track track) : base(track)
|
|
{
|
|
this.track = track;
|
|
}
|
|
}
|
|
} |