fix bind ip

This commit is contained in:
Ivan Filipenkov 2023-08-18 17:49:49 +03:00
parent 3b0b3d9b15
commit 8c1ab9b12e

View file

@ -23,7 +23,7 @@ namespace DangerousD.GameCore
public class AppManager : Game
{
public static AppManager Instance { get; private set; }
public string IpAddress { get; private set; } = "127.0.0.1";
public string IpAddress { get; private set; } = "0.0.0.0";
private GraphicsDeviceManager _graphics;
private SpriteBatch _spriteBatch;
public GameState gameState { get; private set; }