public MurderWinForm() { InitializeComponent(); _god = new God(); _player = _god.CreatesPlayer(); dispBox.Text = $"Welcome to this world, {_player.Name}.\r" + $"Just confirming, you are {_player.FullDescription}\r"; nameData.Text = _player.Name; locData.Text = $"{_player.Location.Name}, {_player.Location.Description}"; invenData.Text = _player.Inventory.ItemList; targetData.Text = _player.TargetList(); }