Quasar/Quasar.Common/Packets/DoKeyboardEvent.cs

15 lines
262 B
C#
Raw Normal View History

2018-08-18 16:55:25 +00:00
using ProtoBuf;
namespace Quasar.Common.Packets
{
[ProtoContract]
public class DoKeyboardEvent : IPacket
{
[ProtoMember(1)]
public byte Key { get; set; }
[ProtoMember(2)]
public bool KeyDown { get; set; }
}
}