WarTornLands.PlayerClasses.Player.GetDrawPosition C# (CSharp) Method

GetDrawPosition() public method

public GetDrawPosition ( ) : Vector2
return Vector2
        public override Vector2 GetDrawPosition()
        {
            return new Vector2((float)Math.Round((Game as Game1).Window.ClientBounds.Width / 2.0 - _size.X * 0.5f),
                                          (float)Math.Round((Game as Game1).Window.ClientBounds.Height / 2.0 - _size.Y * 0.5f));
        }