v1.3.0.1 (Epic Store release)

This commit is contained in:
Regalis11
2024-03-28 18:34:33 +02:00
parent 81ca8637be
commit 3791670c42
269 changed files with 13160 additions and 2966 deletions
@@ -0,0 +1,13 @@
namespace Barotrauma;
public static partial class EosInterface
{
/// <summary>
/// A Product User ID is an EOS-specific ID that's linked to the SteamID or the Epic Account ID of a player.
/// It is used to identify players in many of EOS' interfaces, most notably the P2P networking interface.
/// <br /><br />
/// A Product User ID used by Barotrauma is only valid for Barotrauma; other games that use EOS get their
/// own separate set of Product User IDs.
/// </summary>
public readonly record struct ProductUserId(string Value);
}