Merge pull request #364 from trdwll/Lobby-ctor-public

Make Lobby ctor public
This commit is contained in:
Garry Newman 2020-02-05 10:17:17 +00:00 committed by GitHub
commit 2db3bb9bb3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,7 +10,7 @@ namespace Steamworks.Data
public SteamId Id { get; internal set; }
internal Lobby( SteamId id )
public Lobby( SteamId id )
{
Id = id;
}