Skip to content

Commit 83170d0

Browse files
committed
Moved files to specific folders based on their functionality
1 parent a5391b9 commit 83170d0

20 files changed

Lines changed: 220 additions & 202 deletions
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
using System.Collections.Generic;
22
using DiskCardGame;
33
using UnityEngine;
4+
45
#pragma warning disable 169
56

67
namespace APIPlugin
Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,11 @@ namespace APIPlugin
44
{
55
public class EvolveIdentifier
66
{
7-
private string name;
8-
private int turnsToEvolve;
7+
private string name;
8+
private int turnsToEvolve;
99
private CardModificationInfo mods;
1010
private EvolveParams evolution;
11+
1112
public EvolveParams Evolution
1213
{
1314
get
@@ -26,6 +27,7 @@ public EvolveParams Evolution
2627
}
2728
}
2829
}
30+
2931
return this.evolution;
3032
}
3133
}
@@ -34,7 +36,7 @@ public EvolveIdentifier(string name, int turnsToEvolve, CardModificationInfo mod
3436
{
3537
this.name = name;
3638
this.turnsToEvolve = turnsToEvolve;
37-
this.mods = mods;
39+
this.mods = mods;
3840
}
3941

4042
private void SetParams(CardInfo card)
@@ -58,4 +60,4 @@ public override string ToString()
5860
return name;
5961
}
6062
}
61-
}
63+
}
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)