mirror of
https://github.com/SirusDoma/VoxCharger.git
synced 2024-12-18 02:15:55 +01:00
22 lines
416 B
C#
22 lines
416 B
C#
|
using System;
|
|||
|
using System.Collections;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace VoxCharger
|
|||
|
{
|
|||
|
public abstract partial class Event
|
|||
|
{
|
|||
|
public Time Time { get; set; }
|
|||
|
|
|||
|
protected Event(Time time)
|
|||
|
{
|
|||
|
Time = new Time(time.Measure, time.Beat, time.Offset);
|
|||
|
}
|
|||
|
|
|||
|
public override string ToString()
|
|||
|
{
|
|||
|
return Time.ToString();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|