Life/N Space/State.cs

7 lines
104 B
C#

namespace N_Space {
public enum State: byte {
Dark = 0,
Light = 1
};
}