blob: 8087dc7e143f441228e8aac6de5971697ccd7850 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
namespace StardewModdingAPI.Framework.Networking
{
internal class MultiplayerPeerMod : IMultiplayerPeerMod
{
/*********
** Accessors
*********/
/// <inheritdoc />
public string Name { get; }
/// <inheritdoc />
public string ID { get; }
/// <inheritdoc />
public ISemanticVersion Version { get; }
/*********
** Public methods
*********/
/// <summary>Construct an instance.</summary>
/// <param name="mod">The mod metadata.</param>
public MultiplayerPeerMod(RemoteContextModModel mod)
{
this.Name = mod.Name;
this.ID = mod.ID?.Trim();
this.Version = mod.Version;
}
}
}
|