mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-14 19:29:36 +01:00
Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Co-authored-by: metalgearsloth <comedian_vs_clown@hotmail.com>
20 lines
428 B
C#
20 lines
428 B
C#
using System;
|
|
using Robust.Shared.Serialization;
|
|
|
|
namespace Robust.Benchmarks.Serialization.Definitions
|
|
{
|
|
public sealed class BenchmarkFlags
|
|
{
|
|
public const int Zero = 1 << 0;
|
|
public const int ThirtyOne = 1 << 31;
|
|
}
|
|
|
|
[Flags]
|
|
[FlagsFor(typeof(BenchmarkFlags))]
|
|
public enum BenchmarkFlagsEnum
|
|
{
|
|
Zero = BenchmarkFlags.Zero,
|
|
ThirtyOne = BenchmarkFlags.ThirtyOne
|
|
}
|
|
}
|