11 lines
90 B
C#
11 lines
90 B
C#
|
using System;
|
||
|
|
||
|
namespace AmplifyBloom
|
||
|
{
|
||
|
public enum PrecisionModes
|
||
|
{
|
||
|
Low,
|
||
|
High
|
||
|
}
|
||
|
}
|