mirror of
https://github.com/ApfelTeeSaft/Slender.git
synced 2026-08-27 11:53:34 +00:00
14 lines
154 B
C#
14 lines
154 B
C#
using System;
|
|
|
|
[Serializable]
|
|
public enum AAMode
|
|
{
|
|
FXAA2 = 0,
|
|
FXAA3Console = 1,
|
|
FXAA1PresetA = 2,
|
|
FXAA1PresetB = 3,
|
|
NFAA = 4,
|
|
SSAA = 5,
|
|
DLAA = 6
|
|
}
|