Author: JFFK

0

LibObserve (1.0)

Simply create observable variables ^^ –new observable:local observable = Observable:new(“Initial value of any type”) –register functions that are executed when the value changes:local listenerId = observable:register(function(listenerId, newValue) d(newValue); end) –unregister functions that are executed...