mirror of
https://github.com/Facepunch/sbox-public.git
synced 2026-01-14 09:19:25 -05:00
This commit imports the C# engine code and game files, excluding C++ source code. [Source-Commit: ceb3d758046e50faa6258bc3b658a30c97743268]
15 lines
287 B
C#
15 lines
287 B
C#
namespace Sandbox.UI;
|
|
|
|
public class SelectionEvent : PanelEvent
|
|
{
|
|
public Rect SelectionRect;
|
|
public Vector2 StartPoint;
|
|
public Vector2 EndPoint;
|
|
|
|
public SelectionEvent( string event_name, Panel active ) : base( event_name, active )
|
|
{
|
|
Name = event_name;
|
|
Target = active;
|
|
}
|
|
}
|