1
0
mirror of https://github.com/SirusDoma/VoxCharger.git synced 2024-12-18 10:25:54 +01:00
VoxCharger/Sources/Events/Event.cs
2020-04-19 03:24:48 +07:00

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();
}
}
}