52 lines
1.1 KiB
Lua
52 lines
1.1 KiB
Lua
---@class BP_Preview_LandMine_C:BP_ClientPreviewItemBase_C
|
|
---@field Sphere9 USphereComponent
|
|
---@field StaticMesh UStaticMeshComponent
|
|
---@field Sphere8 USphereComponent
|
|
--Edit Below--
|
|
|
|
local ClientPreviewItemBase = require("Script.Blueprint.PlaceItems.BP_ClientPreviewItemBase")
|
|
local BP_Preview_LandMine = setmetatable(
|
|
{
|
|
},
|
|
{
|
|
__index = ClientPreviewItemBase,
|
|
__metatable = ClientPreviewItemBase
|
|
}
|
|
)
|
|
|
|
|
|
function BP_Preview_LandMine:ReceiveBeginPlay()
|
|
self.SuperClass.ReceiveBeginPlay(self);
|
|
self:AddSMCmp(self.StaticMesh)
|
|
end
|
|
--[[
|
|
function BP_Preview_LandMine:ReceiveBeginPlay()
|
|
self.SuperClass.ReceiveBeginPlay(self);
|
|
end
|
|
--]]
|
|
|
|
--[[
|
|
function BP_Preview_LandMine:ReceiveTick(DeltaTime)
|
|
self.SuperClass.ReceiveTick(self, DeltaTime);
|
|
end
|
|
--]]
|
|
|
|
--[[
|
|
function BP_Preview_LandMine:ReceiveEndPlay()
|
|
self.SuperClass.ReceiveEndPlay(self);
|
|
end
|
|
--]]
|
|
|
|
--[[
|
|
function BP_Preview_LandMine:GetReplicatedProperties()
|
|
return
|
|
end
|
|
--]]
|
|
|
|
--[[
|
|
function BP_Preview_LandMine:GetAvailableServerRPCs()
|
|
return
|
|
end
|
|
--]]
|
|
|
|
return BP_Preview_LandMine; |