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