コード例 #1
0
ファイル: LogicEvent.cs プロジェクト: jakobharder/burntime
 public static LogicEvent operator +(LogicEvent Left, LogicMethodInterface Right)
 {
     if (Left == null)
     {
         Left = new LogicEvent();
     }
     Left.Add((LogicHandler)Right);
     return(Left);
 }
コード例 #2
0
ファイル: LogicEvent.cs プロジェクト: jakobharder/burntime
 public static LogicEvent operator +(LogicEvent Left, LogicHandler Right)
 {
     if (Left == null)
     {
         Left = new LogicEvent();
     }
     Left.Add(Right);
     return(Left);
 }