Vector2.lua 115 B

12345678
  1. class "Vector2"
  2. function Vector2:Vector2()
  3. if self.__ptr == nil then
  4. self.__ptr = Polycore.Vector2()
  5. end
  6. end