using System;
using System.Runtime.CompilerServices;
namespace BansheeEngine
{
///
/// Object that allows you to group multiple GUI toggle buttons. Only one button among the grouped ones can be active.
///
public sealed class GUIToggleGroup : ScriptObject
{
///
/// Creates a new toggle group.
///
public GUIToggleGroup()
{
Internal_CreateInstance(this);
}
[MethodImpl(MethodImplOptions.InternalCall)]
private static extern void Internal_CreateInstance(GUIToggleGroup instance);
}
}