13 lines
295 B
C#
13 lines
295 B
C#
using System;
|
|
|
|
namespace NeoFPS.ScriptGeneration
|
|
{
|
|
[Serializable]
|
|
public class GeneratorConstantsEntry
|
|
{
|
|
public string name = string.Empty;
|
|
public bool nameInvalid = true;
|
|
public bool nameNotUnique = false;
|
|
public bool nameReserved = false;
|
|
}
|
|
} |