mirror of
https://github.com/Facepunch/sbox-public.git
synced 2026-04-18 13:29:22 -04:00
This commit imports the C# engine code and game files, excluding C++ source code. [Source-Commit: ceb3d758046e50faa6258bc3b658a30c97743268]
19 lines
389 B
C#
19 lines
389 B
C#
namespace Sandbox.UI;
|
|
|
|
/// <summary>
|
|
/// A group for ControlSheet, consists of a title and a body containing properties.
|
|
/// </summary>
|
|
public class ControlSheetGroup : Panel
|
|
{
|
|
public Panel Header { get; set; }
|
|
public Panel Body { get; set; }
|
|
|
|
public ControlSheetGroup()
|
|
{
|
|
AddClass( "controlgroup" );
|
|
|
|
Header = AddChild<Panel>( "header" );
|
|
Body = AddChild<Panel>( "body" );
|
|
}
|
|
}
|