mirror of
https://gitlab.com/YuukiPS/GSServer-CBT.git
synced 2024-12-26 07:49:29 +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
|