Korero – Rev 1

Subversion Repositories:
Rev:
namespace Korero.Land
{
    public class MapAvatarPosition
    {
        #region Public Enums, Properties and Fields

        public float Y { get; set; }

        public float X { get; set; }

        public float Z { get; set; }

        public string Name { get; set; }

        #endregion

        #region Constructors, Destructors and Finalizers

        public MapAvatarPosition(string name, float x, float y, float z)
        {
            Name = name;
            X = x;
            Y = y;
            Z = z;
        }

        #endregion
    }
}

Generated by GNU Enscript 1.6.5.90.