cellular-automata/lib/src/Rule.dart
2018-07-07 20:49:02 +02:00

6 lines
66 B
Dart

class Rule {
final Function evaluate;
Rule(this.evaluate);
}