mirror of
https://github.com/neogeek23/Life.git
synced 2026-02-04 11:08:23 +00:00
7 lines
104 B
C#
7 lines
104 B
C#
namespace N_Space {
|
|
public enum State: byte {
|
|
Dark = 0,
|
|
Light = 1
|
|
};
|
|
}
|