mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-20 01:21:29 -07:00
15 lines
305 B
C#
15 lines
305 B
C#
namespace Bloxstrap.Enums.FlagPresets
|
|
{
|
|
public enum MSAAMode
|
|
{
|
|
[EnumName(FromTranslation = "Common.Automatic")]
|
|
Default,
|
|
[EnumName(StaticName = "1x")]
|
|
x1,
|
|
[EnumName(StaticName = "2x")]
|
|
x2,
|
|
[EnumName(StaticName = "4x")]
|
|
x4
|
|
}
|
|
}
|