mirror of
https://github.com/Ale32bit/Capy64.git
synced 2025-12-16 11:05:45 +00:00
10 lines
208 B
C#
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; }
|
|
}
|