private void Init()
        {
            shape = new CircleShape(100f)
            {
                FillColor = Color.Red
            };
            shape.Position = new Vector2f(_window.Size.X / 2f - shape.Radius, _window.Size.Y / 2f - shape.Radius);
            try
            {
                // http://www.dafont.com/sansation.font
                statsFont = new Font("Content/Font/Sansation.ttf");
            }
            catch (Exception e)
            {
                Console.WriteLine("Unable to load font");
                Console.ReadKey();
                _window.Close();
            }

            text = new Text("Loading stats...", statsFont)
            {
                Position      = new Vector2f(5f, 5f),
                CharacterSize = 14
            };

            // Load the character
            _character = new Texture("Content/Texture/characterWalk.png");

            animation = new Animation(_character);
            animation.SetFrameSize(new Vector2i(200, 200));
            animation.SetNumFrames(8);
            animation.SetDuration(1);
            animation.SetRepeating(true);
            animation.SetPosition(new Vector2f(_window.Size.X / 2f, _window.Size.Y / 2f));

            //line[0] = new Vertex(new Vector2f(10, 10));
            //line[1] = new Vertex(new Vector2f(130, 130));
        }