From fbdf114fed22f9fe1fe8585d4234a546f25abba1 Mon Sep 17 00:00:00 2001 From: Unknown Date: Thu, 18 Oct 2018 11:21:09 +0200 Subject: [PATCH] Move RuleSet to its own directory --- lib/src/Simulation.dart | 2 +- lib/src/{ => rules}/RuleSet.dart | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename lib/src/{ => rules}/RuleSet.dart (100%) diff --git a/lib/src/Simulation.dart b/lib/src/Simulation.dart index 8cc04ef..2f167a3 100644 --- a/lib/src/Simulation.dart +++ b/lib/src/Simulation.dart @@ -2,7 +2,7 @@ import 'dart:html' as html; import 'dart:math' as math; import 'package:rules_of_living/src/Grid.dart'; -import 'package:rules_of_living/src/RuleSet.dart'; +import 'package:rules_of_living/src/rules/RuleSet.dart'; enum CellPattern { SpaceShip, Blinker } diff --git a/lib/src/RuleSet.dart b/lib/src/rules/RuleSet.dart similarity index 100% rename from lib/src/RuleSet.dart rename to lib/src/rules/RuleSet.dart