zombiesurvival-evolved/gamemodes/zombiesurvival/entities/weapons/weapon_zs_crow/cl_init.lua

21 lines
299 B
Lua
Raw Normal View History

INC_CLIENT()
2014-10-02 08:49:54 +08:00
SWEP.PrintName = "Crow"
SWEP.DrawCrosshair = false
function SWEP:PrimaryAttack()
end
function SWEP:SecondaryAttack()
end
function SWEP:Reload()
end
function SWEP:Think()
end
function SWEP:DrawWeaponSelection(x, y, w, h, alpha)
self:BaseDrawWeaponSelection(x, y, w, h, alpha)
end