2024-07-29 19:16:55 +03:00
|
|
|
/*
|
2024-11-18 14:40:52 +03:00
|
|
|
* All right reserved to CrystallEdge.
|
2024-07-29 19:16:55 +03:00
|
|
|
*
|
|
|
|
|
* BUT this file is sublicensed under MIT License
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
namespace Content.Server._CP14.RoundSeed;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// This is used for round seed
|
|
|
|
|
/// </summary>
|
|
|
|
|
[RegisterComponent, Access(typeof(CP14RoundSeedSystem))]
|
|
|
|
|
public sealed partial class CP14RoundSeedComponent : Component
|
|
|
|
|
{
|
|
|
|
|
[ViewVariables]
|
|
|
|
|
public static int MaxValue = 10000;
|
|
|
|
|
|
|
|
|
|
[ViewVariables]
|
|
|
|
|
public int Seed;
|
|
|
|
|
}
|