Files
sbox-public/engine/Sandbox.Engine/Systems/UI/Panel/Event/SelectionEvent.cs
s&box team 71f266059a Open source release
This commit imports the C# engine code and game files, excluding C++ source code.

[Source-Commit: ceb3d758046e50faa6258bc3b658a30c97743268]
2025-11-24 09:05:18 +00:00

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;
}
}