1
0
mirror of https://github.com/SirusDoma/VoxCharger.git synced 2024-12-19 19:06:05 +01:00
VoxCharger/Sources/Events/Controller/LaneClear.cs

35 lines
898 B
C#
Raw Normal View History

2020-04-18 22:24:48 +02:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace VoxCharger
{
public abstract partial class Camera
{
public class LaneClear : Camera
{
public LaneClear(Time time, int duration, float start, float end)
: base(time, WorkType.LaneClear)
{
Duration = duration;
Start = start;
End = end;
}
public override string ToString()
{
return $"{base.ToString()}" +
$"\tLaneY" +
$"\t2" +
$"\t{Duration:0.00}" +
$"\t{Start:0.00}" +
$"\t{End:0.00}" +
$"\t0.00" +
$"\t0.00";
}
}
}
}