* bloat * bloat 2 * bloat 3 * final bloat * Update icon.ico * Create integration_test_run.bat * Arggh * Disable some tests * revert roomfill clearexisting changes
22 lines
433 B
C#
22 lines
433 B
C#
/*
|
|
* All right reserved to CrystallEdge.
|
|
*
|
|
* 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;
|
|
}
|