mirror of
https://gitlab.com/YuukiPS/GSServer-CBT.git
synced 2024-12-25 15:29:22 +03:00
9 lines
280 B
Lua
9 lines
280 B
Lua
require('Actor/ActorCommon')
|
|
local interactionActorProxy = require('Actor/Interaction/InteractionActorProxy')
|
|
|
|
local TestInteractionActor = class("TestInteractionActor", interactionActorProxy)
|
|
|
|
function InteractionActorProxy:OnInterStart(interCnt)
|
|
end
|
|
|
|
return TestInteractionActor |