mirror of
https://github.com/lifestorm/wnsrc.git
synced 2025-12-17 13:53:45 +03:00
67 lines
1.9 KiB
Lua
67 lines
1.9 KiB
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/
|
|
--]]
|
|
|
|
|
|
ENT.Base = "base_entity"
|
|
ENT.Type = "brush"
|
|
|
|
--[[---------------------------------------------------------
|
|
Name: Initialize
|
|
-----------------------------------------------------------]]
|
|
function ENT:Initialize()
|
|
end
|
|
|
|
--[[---------------------------------------------------------
|
|
Name: StartTouch
|
|
-----------------------------------------------------------]]
|
|
function ENT:StartTouch( entity )
|
|
end
|
|
|
|
--[[---------------------------------------------------------
|
|
Name: EndTouch
|
|
-----------------------------------------------------------]]
|
|
function ENT:EndTouch( entity )
|
|
end
|
|
|
|
--[[---------------------------------------------------------
|
|
Name: Touch
|
|
-----------------------------------------------------------]]
|
|
function ENT:Touch( entity )
|
|
end
|
|
|
|
--[[---------------------------------------------------------
|
|
Name: PassesTriggerFilters
|
|
Desc: Return true if this object should trigger us
|
|
-----------------------------------------------------------]]
|
|
function ENT:PassesTriggerFilters( entity )
|
|
return true
|
|
end
|
|
|
|
--[[---------------------------------------------------------
|
|
Name: KeyValue
|
|
Desc: Called when a keyvalue is added to us
|
|
-----------------------------------------------------------]]
|
|
function ENT:KeyValue( key, value )
|
|
end
|
|
|
|
--[[---------------------------------------------------------
|
|
Name: Think
|
|
Desc: Entity's think function.
|
|
-----------------------------------------------------------]]
|
|
function ENT:Think()
|
|
end
|
|
|
|
--[[---------------------------------------------------------
|
|
Name: OnRemove
|
|
Desc: Called just before entity is deleted
|
|
-----------------------------------------------------------]]
|
|
function ENT:OnRemove()
|
|
end
|