Skip to content

Commit b127f49

Browse files
committed
Rearrange physical layout
1 parent 0b514a9 commit b127f49

File tree

9 files changed

+12
-44
lines changed

9 files changed

+12
-44
lines changed

Runtime/Agent.cs

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,16 @@
11
using System;
22

33
namespace Activ.GOAP{
4-
public interface Agent{
54

6-
Func<Cost>[] Actions();
5+
public interface Agent
6+
{ Func<Cost>[] Actions(); }
77

8-
}}
8+
public interface Parametric
9+
{ Action[] Functions(); }
10+
11+
public interface Clonable<T>{
12+
T Allocate ();
13+
T Clone (T storage);
14+
}
15+
16+
}

Runtime/Clonable.cs

Lines changed: 0 additions & 7 deletions
This file was deleted.

Runtime/Clonable.cs.meta

Lines changed: 0 additions & 11 deletions
This file was deleted.
File renamed without changes.
File renamed without changes.

Runtime/SolverStats.cs renamed to Runtime/Details/SolverStats.cs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,6 @@ public interface SolverStats{
1111

1212
}
1313

14-
public interface SolverOwner{
15-
16-
SolverStats stats{ get; }
14+
public interface SolverOwner{ SolverStats stats{ get; } }
1715

1816
}
19-
20-
} // Activ.GOAP
File renamed without changes.

Runtime/Parametric.cs

Lines changed: 0 additions & 7 deletions
This file was deleted.

Runtime/Parametric.cs.meta

Lines changed: 0 additions & 11 deletions
This file was deleted.

0 commit comments

Comments
 (0)