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