Contains standard libraries for ZenCode.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

LiveInt.zs 264B

123456789
  1. public interface LiveInt {
  2. get value as int;
  3. set value as int;
  4. addListener(listener as Listener) as ListenerHandle`unique;
  5. alias Listener as function(oldValue as int, newValue as int) as void;
  6. alias ListenerHandle as listeners.ListenerHandle<Listener>;
  7. }