cellular-automata/lib/src/Cell.dart

7 lines
168 B
Dart

import 'package:rules_of_living/src/Rule.dart';
class Cell {
/// For determining if render updates are necessary in [Grid].render() function
bool dirty = false;
}