MonoGameUi.Border.Border C# (CSharp) Method

Border() public method

Erstellt eine Border-Instanz mit den angegebenen Initialwerten.
public Border ( int left, int top, int right, int bottom )
left int Abstand links
top int Abstand oben
right int Abstand rechts
bottom int Abstand unten
        public Border(int left, int top, int right, int bottom)
        {
            Left = left;
            Top = top;
            Right = right;
            Bottom = bottom;
        }