Beispiel #1
0
        public rule()
        {
            name = "New rule";
            this._state = ruleState.stopped;

            _timeline.eventOccuring += handleTimelineEvent;
            _timeline.timelineAdvance += handleTimelineAdvance;
        }
Beispiel #2
0
        public rule(String newName)
        {
            this.name = newName;
            this._state = ruleState.stopped;

            _timeline.eventOccuring += handleTimelineEvent;
            _timeline.timelineAdvance += handleTimelineAdvance;
        }
 public ruleTransition(ruleState next = default, ushort mask = default)
 {
     this.next = next;
     this.mask = mask;
 }
 public Transformer(ruleState state = default, bool hasRTL = default, ushort seen = default)
 {
     this.state  = state;
     this.hasRTL = hasRTL;
     this.seen   = seen;
 }