mirror of
https://github.com/AnnulusGames/Alchemy.git
synced 2025-01-22 08:18:51 -05:00
Add: parameterless group attribute constructors
This commit is contained in:
parent
4de21458d5
commit
8102376232
@ -14,6 +14,11 @@ namespace Alchemy.Inspector
|
||||
|
||||
public sealed class TabGroupAttribute : PropertyGroupAttribute
|
||||
{
|
||||
public TabGroupAttribute(string tabName) : base()
|
||||
{
|
||||
TabName = tabName;
|
||||
}
|
||||
|
||||
public TabGroupAttribute(string groupPath, string tabName) : base(groupPath)
|
||||
{
|
||||
TabName = tabName;
|
||||
@ -30,6 +35,7 @@ namespace Alchemy.Inspector
|
||||
|
||||
public sealed class HorizontalGroupAttribute : PropertyGroupAttribute
|
||||
{
|
||||
public HorizontalGroupAttribute() : base() { }
|
||||
public HorizontalGroupAttribute(string groupPath) : base(groupPath) { }
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user