forked from endernon/PGRData
15 lines
No EOL
394 B
Lua
15 lines
No EOL
394 B
Lua
local XRpgMakerGameObject = require("XEntity/XRpgMakerGame/Object/XRpgMakerGameObject")
|
|
|
|
local type = type
|
|
local pairs = pairs
|
|
local Vector3 = CS.UnityEngine.Vector3
|
|
|
|
---推箱子陷阱对象
|
|
---@class XRpgMakerGameTrap:XRpgMakerGameObject
|
|
local XRpgMakerGameTrap = XClass(XRpgMakerGameObject, "XRpgMakerGameTrap")
|
|
|
|
function XRpgMakerGameTrap:Ctor(id, gameObject)
|
|
|
|
end
|
|
|
|
return XRpgMakerGameTrap |