We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1487e3d commit 1331e90Copy full SHA for 1331e90
Assets/Scripts/Model/Abilities/PadCampaignDrip.cs
@@ -1,8 +1,24 @@
1
-using System.Collections.Generic;
+using System.Collections.Generic;
2
using System.Linq;
3
+using System.Threading.Tasks;
4
using model.play;
5
6
namespace model.abilities {
7
public class PadCampaignDrip : IAbility {
8
+ public ISource Source => throw new System.NotImplementedException();
9
+
10
+ public bool Active => throw new System.NotImplementedException();
11
12
+ public Task Resolve() {
13
+ throw new System.NotImplementedException();
14
+ }
15
16
+ public Condition TriggerCondition() {
17
+ return YourTurnBegins();
18
19
20
+ public PadCampaignDripInstance CreatePending() {
21
+ NextReactionWindow().Add(new PadCampaignDripInstance())
22
23
}
24
0 commit comments