mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
Co-authored-by: 20kdc <asdd2808@gmail.com> Co-authored-by: Pieter-Jan Briers <pieterjan.briers+git@gmail.com>
18 lines
446 B
C#
18 lines
446 B
C#
using Robust.Client.UserInterface;
|
|
using Robust.Shared.Input;
|
|
|
|
namespace Robust.Client.Input
|
|
{
|
|
public sealed class ViewportBoundKeyEventArgs
|
|
{
|
|
public BoundKeyEventArgs KeyEventArgs { get; }
|
|
public Control? Viewport { get; }
|
|
|
|
public ViewportBoundKeyEventArgs(BoundKeyEventArgs keyEventArgs, Control? viewport)
|
|
{
|
|
KeyEventArgs = keyEventArgs;
|
|
Viewport = viewport;
|
|
}
|
|
}
|
|
}
|