mirror of
https://github.com/Ale32bit/Capy64.git
synced 2025-12-16 02:55:44 +00:00
8 lines
132 B
C#
8 lines
132 B
C#
using System;
|
|
|
|
namespace Capy64.Eventing.Events;
|
|
|
|
public class CharEvent : EventArgs
|
|
{
|
|
public char Character { get; set; }
|
|
}
|