File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
samples/Unity.Match3/Assets/Scripts Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ private IGameBoardSolver<IUnityGridSlot> GetGameBoardSolver(IUnityGameBoardRende
80
80
return new GameBoardSolver < IUnityGridSlot > ( GetSequenceDetectors ( ) , GetSpecialItemDetectors ( gameBoardRenderer ) ) ;
81
81
}
82
82
83
- private static ISequenceDetector < IUnityGridSlot > [ ] GetSequenceDetectors ( )
83
+ private ISequenceDetector < IUnityGridSlot > [ ] GetSequenceDetectors ( )
84
84
{
85
85
return new ISequenceDetector < IUnityGridSlot > [ ]
86
86
{
@@ -89,8 +89,7 @@ private static ISequenceDetector<IUnityGridSlot>[] GetSequenceDetectors()
89
89
} ;
90
90
}
91
91
92
- private static ISpecialItemDetector < IUnityGridSlot > [ ] GetSpecialItemDetectors (
93
- IUnityGameBoardRenderer gameBoardRenderer )
92
+ private ISpecialItemDetector < IUnityGridSlot > [ ] GetSpecialItemDetectors ( IUnityGameBoardRenderer gameBoardRenderer )
94
93
{
95
94
return new ISpecialItemDetector < IUnityGridSlot > [ ]
96
95
{
You can’t perform that action at this time.
0 commit comments