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