AlbLib.Mapping.Position.Position C# (CSharp) Method

Position() public method

public Position ( byte x, byte y ) : System
x byte
y byte
return System
        public Position(byte x, byte y)
            : this()
        {
            X = x;
            Y = y;
        }
Position