mirror of
https://github.com/neogeek23/Life.git
synced 2026-02-04 11:08:23 +00:00
9 lines
135 B
C#
9 lines
135 B
C#
namespace N_Space {
|
|
public enum State {
|
|
Default = 0,
|
|
Red = 1,
|
|
Green = 2,
|
|
Blue = 3
|
|
};
|
|
}
|