14 lines
287 B
C#
14 lines
287 B
C#
namespace NBShader
|
|
{
|
|
/// <summary>
|
|
/// Runtime NBShader feature tiers, ordered from the smallest keyword budget to the full feature set.
|
|
/// </summary>
|
|
public enum NBShaderFeatureTier
|
|
{
|
|
Low = 0,
|
|
Medium = 1,
|
|
High = 2,
|
|
Ultra = 3
|
|
}
|
|
}
|