mirror of
https://github.com/Dadido3/noita-mapcap.git
synced 2024-11-18 17:17:31 +00:00
Remove not needed class annotations
This commit is contained in:
parent
98370f6737
commit
0222350a7f
@ -3,7 +3,6 @@
|
|||||||
-- This software is released under the MIT License.
|
-- This software is released under the MIT License.
|
||||||
-- https://opensource.org/licenses/MIT
|
-- https://opensource.org/licenses/MIT
|
||||||
|
|
||||||
---@class HilbertLib
|
|
||||||
local Hilbert = {}
|
local Hilbert = {}
|
||||||
|
|
||||||
---Rotate/flip quadrant.
|
---Rotate/flip quadrant.
|
||||||
|
@ -9,7 +9,6 @@ local Vec2 = require("libraries.noita-api.vec2")
|
|||||||
-- Classes --
|
-- Classes --
|
||||||
-------------
|
-------------
|
||||||
|
|
||||||
---@class NoitaCameraAPI
|
|
||||||
local CameraAPI = {}
|
local CameraAPI = {}
|
||||||
|
|
||||||
------------------------
|
------------------------
|
||||||
|
@ -9,7 +9,6 @@ local JSON = require("libraries.noita-api.json")
|
|||||||
-- Classes --
|
-- Classes --
|
||||||
-------------
|
-------------
|
||||||
|
|
||||||
---@class NoitaComponentAPI
|
|
||||||
local ComponentAPI = {}
|
local ComponentAPI = {}
|
||||||
|
|
||||||
---@class NoitaComponent
|
---@class NoitaComponent
|
||||||
|
@ -9,7 +9,6 @@ local Vec2 = require("libraries.noita-api.vec2")
|
|||||||
-- Classes --
|
-- Classes --
|
||||||
-------------
|
-------------
|
||||||
|
|
||||||
---@class NoitaDebugAPI
|
|
||||||
local DebugAPI = {}
|
local DebugAPI = {}
|
||||||
|
|
||||||
------------------------
|
------------------------
|
||||||
|
@ -11,7 +11,6 @@ local ComponentAPI = require("libraries.noita-api.component")
|
|||||||
-- Classes --
|
-- Classes --
|
||||||
-------------
|
-------------
|
||||||
|
|
||||||
---@class NoitaEntityAPI
|
|
||||||
local EntityAPI = {}
|
local EntityAPI = {}
|
||||||
|
|
||||||
---@class NoitaEntity
|
---@class NoitaEntity
|
||||||
|
@ -5,7 +5,6 @@
|
|||||||
|
|
||||||
-- Simple library to marshal JSON values. Mainly for Noita.
|
-- Simple library to marshal JSON values. Mainly for Noita.
|
||||||
|
|
||||||
---@class JSONLib
|
|
||||||
local lib = {}
|
local lib = {}
|
||||||
|
|
||||||
---Maps single characters to escaped strings.
|
---Maps single characters to escaped strings.
|
||||||
|
@ -3,7 +3,6 @@
|
|||||||
-- This software is released under the MIT License.
|
-- This software is released under the MIT License.
|
||||||
-- https://opensource.org/licenses/MIT
|
-- https://opensource.org/licenses/MIT
|
||||||
|
|
||||||
---@class Utils
|
|
||||||
local Utils = {}
|
local Utils = {}
|
||||||
|
|
||||||
---Returns if the file at filePath exists.
|
---Returns if the file at filePath exists.
|
||||||
@ -19,4 +18,8 @@ function Utils.FileExists(filePath)
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
function Utils.NoitaSpecialDirectory()
|
||||||
|
-- TODO: Implement NoitaSpecialDirectory function
|
||||||
|
end
|
||||||
|
|
||||||
return Utils
|
return Utils
|
||||||
|
Loading…
Reference in New Issue
Block a user