Skip to content

Commit f20e739

Browse files
committed
Switching decs passing prop to internal fixes #58
1 parent d793785 commit f20e739

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Src/Decorators/Init.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public class Init : AbstractDecorator{
1414
static int uid; internal static int id => uid = ID(uid);
1515
internal static Init[] stack = new Init[128];
1616
internal static int stackIndex = -1;
17-
public bool passing = true;
17+
internal bool passing = true;
1818
int frame;
1919

2020
// NOTE: unlike other decorators, it appears that the entry

Src/Decorators/Latch.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ namespace Active.Core{
77
public class Latch : Conditional{
88

99
static int uid; internal static int id => uid = ID(uid);
10-
public bool passing;
10+
internal bool passing;
1111
int frame;
1212

1313
public Gate? this[bool cond]{ get{

0 commit comments

Comments
 (0)