mirror of
https://gitlab.com/YuukiPS/GSServer-CBT.git
synced 2025-03-14 14:14:42 +03:00
12 lines
203 B
Lua
12 lines
203 B
Lua
|
require('Actor/ActorCommon')
|
||
|
local npcActorProxy = require('Actor/Npc/NpcActorProxy')
|
||
|
|
||
|
local Diluc = class("Diluc", npcActorProxy)
|
||
|
|
||
|
Diluc.defaultAlias = "Diluc"
|
||
|
|
||
|
function Diluc:Start()
|
||
|
|
||
|
end
|
||
|
|
||
|
return Diluc
|