11 lines
115 B
C#
11 lines
115 B
C#
namespace AmplifyImpostors
|
|
{
|
|
public enum TextureScale
|
|
{
|
|
Full = 1,
|
|
Half = 2,
|
|
Quarter = 4,
|
|
Eighth = 8
|
|
}
|
|
}
|