cellular-automata/lib/Rule.dart

5 lines
65 B
Dart

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