9 lines
56 B
Java
9 lines
56 B
Java
|
package lsystem;
|
||
|
|
||
|
public enum Type {
|
||
|
|
||
|
AXIOM,
|
||
|
RULE
|
||
|
|
||
|
}
|