about summary refs log tree commit diff
path: root/Day12.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Day12.cs')
-rw-r--r--Day12.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Day12.cs b/Day12.cs
index 4d6178a..7d61b63 100644
--- a/Day12.cs
+++ b/Day12.cs
@@ -53,7 +53,7 @@ namespace aoc2019
             step++;
         }
 
-        public override string Part1()
+        protected override string Part1()
         {
             while (step < 1000)
                 Step();
@@ -61,7 +61,7 @@ namespace aoc2019
             return $"{moons.Sum(p => p.TotalEnergy)}";
         }
 
-        public override string Part2()
+        protected override string Part2()
         {
             int cycleX = 0, cycleY = 0, cycleZ = 0;