blinky.lua 153 B

123456789
  1. blinky = {
  2. t = 0,
  3. init = function(self)
  4. print("Hello World!")
  5. end,
  6. update = function(self)
  7. self.t = self.t + 1
  8. end
  9. }