Table of Contents

Class CompatGroup

Namespace
ConfigurableWarning.API.Attributes
Assembly
RedstoneWizard08.ContentLibrary.dll

Registers any contained options as a part of this category. This is specifically for compat modules.

[MeansImplicitUse]
[AttributeUsage(AttributeTargets.Class, Inherited = false)]
public class CompatGroup : Attribute
Inheritance
CompatGroup
Inherited Members

Constructors

CompatGroup(string)

Registers any contained options as a part of this category. This is specifically for compat modules.

public CompatGroup(string category)

Parameters

category string

The category to register to.

CompatGroup(string, string)

Registers any contained options as a part of this category, overriding the parent's tab. This is specifically for compat modules.

public CompatGroup(string tab, string category)

Parameters

tab string

The tab

category string

The category

Fields

Category

The category.

public readonly string Category

Field Value

string

Tab

The tab. If this is null, it will default to the parent's tab.

public readonly string? Tab

Field Value

string