FermiInTheAir.GameObjects.GameObject.GameObject C# (CSharp) Method

GameObject() public method

public GameObject ( int height, int width, Point pos, char symbol )
height int
width int
pos Point
symbol char
        public GameObject(int height, int width, Point pos, char symbol)
        {
            this.Height = height;
            this.Width = width;
            this.UpLeftCorner = pos;
            this.HaveCollision = false;
            this.Symbol = symbol;
            SetPositionsCoordinates();
        }