mirror of
https://github.com/lifestorm/wnsrc.git
synced 2025-12-17 13:53:45 +03:00
35 lines
924 B
Lua
35 lines
924 B
Lua
--[[
|
|
| This file was obtained through the combined efforts
|
|
| of Madbluntz & Plymouth Antiquarian Society.
|
|
|
|
|
| Credits: lifestorm, Gregory Wayne Rossel JR.,
|
|
| Maloy, DrPepper10 @ RIP, Atle!
|
|
|
|
|
| Visit for more: https://plymouth.thetwilightzone.ru/
|
|
--]]
|
|
|
|
|
|
include( "shared.lua" )
|
|
|
|
--[[---------------------------------------------------------
|
|
Name: Initialize
|
|
Desc: First function called. Use to set up your entity
|
|
-----------------------------------------------------------]]
|
|
function ENT:Initialize()
|
|
end
|
|
|
|
|
|
--[[---------------------------------------------------------
|
|
Name: Think
|
|
Desc: Client Think - called every frame
|
|
-----------------------------------------------------------]]
|
|
function ENT:Think()
|
|
end
|
|
|
|
--[[---------------------------------------------------------
|
|
Name: OnRestore
|
|
Desc: Called immediately after a "load"
|
|
-----------------------------------------------------------]]
|
|
function ENT:OnRestore()
|
|
end
|