12 lines
189 B
C#
12 lines
189 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
namespace BITKit
|
|
{
|
|
public enum TransformMode : int
|
|
{
|
|
Locked,
|
|
Move,
|
|
Rotate,
|
|
Scale,
|
|
}
|
|
} |