mirror of
https://github.com/Ale32bit/Capy64.git
synced 2025-12-16 02:55:44 +00:00
14 lines
310 B
C#
14 lines
310 B
C#
using Microsoft.Xna.Framework;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Capy64.Eventing.Events;
|
|
|
|
public class TickEvent : EventArgs
|
|
{
|
|
public GameTime GameTime { get; set; }
|
|
public ulong TotalTicks { get; set; }
|
|
}
|