|
1234567891011121314151617 |
- package edu.stuy.goldfish.rules;
-
- import edu.stuy.goldfish.Grid;
-
- public class RuleSet {
-
- /**
- * Run this ruleset on a grid, returning the result.
- *
- * @param g The grid this is running on
- *
- * @return
- */
- public static Grid run (Grid g) {
- return g;
- }
- }
|