namespace Zinnia.Data.Enum
{
using System;
///
/// Properties of a .
///
[Flags]
public enum TransformProperties
{
///
/// The Position of a .
///
Position = 1 << 0,
///
/// The Rotation of a .
///
Rotation = 1 << 1,
///
/// The Scale of a .
///
Scale = 1 << 2
}
}