Skip to content

Commit

Permalink
remove general extensions folder and use extensionator package instead
Browse files Browse the repository at this point in the history
  • Loading branch information
ninetailsrabbit committed Jun 22, 2024
1 parent 458f28e commit 4ced36e
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 373 deletions.
6 changes: 5 additions & 1 deletion Match3Maker/Match3Maker.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

<PropertyGroup>
<Title>Ninetailsrabbit.Match3Maker</Title>
<Version>1.1.9</Version>
<Version>1.2.0</Version>
<Description>This lightweight library provides the core logic and functionality you need to build engaging match-3 games. Focus on game design and mechanics while leaving the complex logic to this library</Description>
<Copyright>© 2024 Ninetailsrabbit</Copyright>
<Authors>Ninetailsrabbit</Authors>
Expand All @@ -37,5 +37,9 @@
<None Include="../LICENSE" Pack="true" PackagePath="\" />
<None Include="icon.png" Pack="True" PackagePath="" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Ninetailsrabbit.Extensionator" Version="0.1.0" />
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion Match3Maker/src/components/Board.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using System.Numerics;
using SystemExtensions;
using Extensionator;
using static Match3Maker.BoardCellUpdate;

namespace Match3Maker {
Expand Down
2 changes: 1 addition & 1 deletion Match3Maker/src/components/Sequence.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using SystemExtensions;
using Extensionator;

namespace Match3Maker {

Expand Down
15 changes: 0 additions & 15 deletions Match3Maker/src/extensions/GeneralExtension.cs

This file was deleted.

289 changes: 0 additions & 289 deletions Match3Maker/src/extensions/ListExtension.cs

This file was deleted.

34 changes: 0 additions & 34 deletions Match3Maker/src/extensions/MathExtension.cs

This file was deleted.

30 changes: 0 additions & 30 deletions Match3Maker/src/extensions/RandomExtension.cs

This file was deleted.

2 changes: 1 addition & 1 deletion Match3Maker/src/features/PieceWeightGenerator.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using System.Diagnostics;
using SystemExtensions;
using Extensionator;

namespace Match3Maker {
public sealed class PieceWeightGenerator : IPieceGenerator {
Expand Down
2 changes: 1 addition & 1 deletion Match3Maker/src/features/SequenceFinder.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using SystemExtensions;
using Extensionator;

namespace Match3Maker {
public class SequenceFinder(
Expand Down

0 comments on commit 4ced36e

Please sign in to comment.