What if I want to define a type of tuple with that kind of actions? 
    
    
    #@Actions
    type
     Action*     = proc(){.nimcall.}
     ActionT*[T] = proc(arg: T){.nimcall.}
    #@Objects
    type
      ObjectEvents* = tuple[start: Action, tick: ActionT[float], stop: Action]
    
    
    Run

Reply via email to