File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -25,17 +25,17 @@ public struct EventObj
2525 public object [ ] args ;
2626 } ;
2727
28- public static Dictionary < string , List < Pair > > events_out = new Dictionary < string , List < Pair > > ( ) ;
28+ static Dictionary < string , List < Pair > > events_out = new Dictionary < string , List < Pair > > ( ) ;
2929
30- public static LinkedList < EventObj > firedEvents_out = new LinkedList < EventObj > ( ) ;
31- private static LinkedList < EventObj > doingEvents_out = new LinkedList < EventObj > ( ) ;
30+ static LinkedList < EventObj > firedEvents_out = new LinkedList < EventObj > ( ) ;
31+ static LinkedList < EventObj > doingEvents_out = new LinkedList < EventObj > ( ) ;
3232
33- public static Dictionary < string , List < Pair > > events_in = new Dictionary < string , List < Pair > > ( ) ;
33+ static Dictionary < string , List < Pair > > events_in = new Dictionary < string , List < Pair > > ( ) ;
3434
35- public static LinkedList < EventObj > firedEvents_in = new LinkedList < EventObj > ( ) ;
36- private static LinkedList < EventObj > doingEvents_in = new LinkedList < EventObj > ( ) ;
35+ static LinkedList < EventObj > firedEvents_in = new LinkedList < EventObj > ( ) ;
36+ static LinkedList < EventObj > doingEvents_in = new LinkedList < EventObj > ( ) ;
3737
38- private static bool _isPauseOut = false ;
38+ static bool _isPauseOut = false ;
3939
4040 public Event ( )
4141 {
You can’t perform that action at this time.
0 commit comments