12 lines
128 B
C#
12 lines
128 B
C#
using System;
|
|
|
|
[Serializable]
|
|
public enum SaveObjResolution
|
|
{
|
|
Full = 0,
|
|
Half = 1,
|
|
Quarter = 2,
|
|
Eighth = 3,
|
|
Sixteenth = 4
|
|
}
|