-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
Release/2.1.0
- Loading branch information
There are no files selected for viewing
This file was deleted.
This file was deleted.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
using CrashKonijn.Goap.Behaviours; | ||
using Demos.Complex.Interfaces; | ||
|
||
namespace Demos.Complex.Targets | ||
{ | ||
public class ClosestSourceTarget<TGatherable> : TargetKeyBase | ||
where TGatherable : IGatherable | ||
{ | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
using CrashKonijn.Goap.Behaviours; | ||
|
||
namespace Demos.Complex.Targets | ||
{ | ||
public class ClosestTarget<TObject> : TargetKeyBase | ||
where TObject : class | ||
{ | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
using CrashKonijn.Goap.Behaviours; | ||
|
||
namespace Demos.Complex.Targets | ||
{ | ||
public class TransformTarget : TargetKeyBase | ||
{ | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
using CrashKonijn.Goap.Behaviours; | ||
|
||
namespace Demos.Complex.Targets | ||
{ | ||
public class WanderTarget : TargetKeyBase | ||
{ | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
using CrashKonijn.Goap.Behaviours; | ||
using Demos.Complex.Interfaces; | ||
|
||
namespace Demos.Complex.WorldKeys | ||
{ | ||
public class CreatedItem<TCreatable> : WorldKeyBase | ||
where TCreatable : ICreatable | ||
{ | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
using CrashKonijn.Goap.Behaviours; | ||
using Demos.Complex.Interfaces; | ||
|
||
namespace Demos.Complex.WorldKeys | ||
{ | ||
public class IsHolding<THoldable> : WorldKeyBase | ||
where THoldable : IHoldable | ||
{ | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
using CrashKonijn.Goap.Behaviours; | ||
|
||
namespace Demos.Complex.WorldKeys | ||
{ | ||
public class IsHungry : WorldKeyBase | ||
{ | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.