// Copyright © 2017-2018 Atomic Software, LLC. All Rights Reserved. // See LICENSE.md for full license information. namespace Atom.Core.Game { public class Shortcut { public byte Slot { get; set; } public ushort Code { get; set; } public ushort Value { get; set; } } }