Capy64/Capy64/Eventing/Events/TickEvent.cs
Alessandro Proto 927a2e253a Added BinaryWriteHandle
Clean up of all the code
2023-01-14 18:16:35 +01:00

10 lines
208 B
C#

using Microsoft.Xna.Framework;
using System;
namespace Capy64.Eventing.Events;
public class TickEvent : EventArgs
{
public GameTime GameTime { get; set; }
public ulong TotalTicks { get; set; }
}