A Razor UI panel that serves as a spawn menu host mode for effects. It inherits Panel, sets spawn menu attributes (icon, title, order) and contains two child components, EffectsList and EffectsProperties.
@using Sandbox;
@using Sandbox.UI;
@inherits Panel
@namespace Sandbox
@attribute [SpawnMenuHost.SpawnMenuMode]
@attribute [Icon( "🎨" )]
@attribute [Title( "#spawnmenu.mode.effects" )]
@attribute [Order( -75 )]
<root>
<EffectsList />
<EffectsProperties />
</root>