12 lines
233 B
Lua
12 lines
233 B
Lua
|
require('Actor/ActorCommon')
|
||
|
local npcActorProxy = require('Actor/Npc/NpcActorProxy')
|
||
|
|
||
|
local SneakJudge = class("SneakJudge", npcActorProxy)
|
||
|
|
||
|
SneakJudge.defaultAlias = "SneakJudge"
|
||
|
|
||
|
function SneakJudge:Start()
|
||
|
|
||
|
end
|
||
|
|
||
|
return SneakJudge
|