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.

11 lines
124 B

  1. VCAM = Class{}
  2. function VCAM:init(x, y)
  3. self.x = x
  4. self.y = y
  5. end
  6. function VCAM:update(x,y)
  7. self.x = x
  8. self.y = y
  9. end