For use on:
https://console.aws.amazon.com/s3/home
Only tested in Chrome.
Installation instructions:
- View > Always Show Bookmarks Bar.
| Vector2D = {} | |
| function Vector2D:new(x, y) | |
| local object = { x = x, y = y } | |
| setmetatable(object, { __index = Vector2D }) | |
| return object | |
| end | |
| function Vector2D:copy() | |
| return Vector2D:new(self.x, self.y) |
For use on:
https://console.aws.amazon.com/s3/home
Only tested in Chrome.
Installation instructions: