A small Sandbox component that makes the mouse cursor visible when the component starts. It overrides OnStart and sets Mouse.Visibility to Visible.
namespace Sandbox;
// Just makes the mouse visible so you can click stuff
public class ExampleMouseEnabler : Component
{
protected override void OnStart()
{
Mouse.Visibility = MouseVisibility.Visible;
}
}