2023-07-14 19:35:33 +00:00
|
|
|
local XRpgMakerGameObject = require("XEntity/XRpgMakerGame/Object/XRpgMakerGameObject")
|
|
|
|
|
|
|
|
local type = type
|
|
|
|
local pairs = pairs
|
|
|
|
local Vector3 = CS.UnityEngine.Vector3
|
|
|
|
|
2024-09-01 20:49:41 +00:00
|
|
|
---推箱子陷阱对象
|
|
|
|
---@class XRpgMakerGameTrap:XRpgMakerGameObject
|
2023-07-14 19:35:33 +00:00
|
|
|
local XRpgMakerGameTrap = XClass(XRpgMakerGameObject, "XRpgMakerGameTrap")
|
|
|
|
|
|
|
|
function XRpgMakerGameTrap:Ctor(id, gameObject)
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
return XRpgMakerGameTrap
|