11 lines
117 B
C#
11 lines
117 B
C#
namespace AmplifyImpostors
|
|
{
|
|
public enum TextureCompression
|
|
{
|
|
None = 0,
|
|
Normal = 1,
|
|
High = 2,
|
|
Low = 3
|
|
}
|
|
}
|