Skip to content

Commit 668464b

Browse files
author
RUBIUS\chebanovdd
committed
Changed projects structure.
1 parent 671e6ea commit 668464b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+359
-477
lines changed

Assets/Plugins/Match3/Match3.App.dll

10.5 KB
Binary file not shown.

Assets/Plugins/Match3/Match3.App.dll.meta

Lines changed: 33 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Assets/Plugins/Match3/Match3.Core.dll

-2.5 KB
Binary file not shown.
-512 Bytes
Binary file not shown.

Assets/Plugins/Match3/Match3.UniTaskApp.meta

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Assets/Plugins/Match3/Match3.UniTaskApp/Interfaces.meta

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Assets/Plugins/Match3/Match3.UnityApp/Interfaces/IBoardFillStrategy.cs renamed to Assets/Plugins/Match3/Match3.UniTaskApp/Interfaces/IBoardFillStrategy.cs

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1-
using System.Collections.Generic;
1+
using System.Collections.Generic;
2+
using Match3.App.Interfaces;
3+
using Match3.App.Models;
24
using Match3.Core.Interfaces;
3-
using Match3.Core.Models;
45

5-
namespace Match3.UnityApp.Interfaces
6+
namespace Match3.UniTaskApp.Interfaces
67
{
78
public interface IBoardFillStrategy<TGridSlot> where TGridSlot : IGridSlot
89
{

Assets/Plugins/Match3/Match3.UnityApp/Internal/GameBoard.cs.meta renamed to Assets/Plugins/Match3/Match3.UniTaskApp/Interfaces/IBoardFillStrategy.cs.meta

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
using System.Threading;
2+
using Cysharp.Threading.Tasks;
3+
using Match3.Core.Interfaces;
4+
5+
namespace Match3.UniTaskApp.Interfaces
6+
{
7+
public interface IItemSwapper<in TGridSlot> where TGridSlot : IGridSlot
8+
{
9+
UniTask SwapItemsAsync(TGridSlot gridSlot1, TGridSlot gridSlot2, CancellationToken cancellationToken = default);
10+
}
11+
}

Assets/Plugins/Match3/Match3.UniTaskApp/Interfaces/IItemSwapper.cs.meta

Lines changed: 11 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)