21 lines
623 B
Lua
21 lines
623 B
Lua
|
--Wire graphics tablet by greenarrow
|
||
|
--http://gmodreviews.googlepages.com/
|
||
|
--http://forums.facepunchstudios.com/greenarrow
|
||
|
--There may be a few bits of code from the wire panel here and there as i used it as a starting point.
|
||
|
--Credit to whoever created the first wire screen, from which all others seem to use the lagacy clientside drawing code (this one included)
|
||
|
|
||
|
ENT.Type = "anim"
|
||
|
ENT.Base = "base_wire_entity"
|
||
|
|
||
|
ENT.PrintName = ""
|
||
|
ENT.Author = ""
|
||
|
ENT.Contact = ""
|
||
|
ENT.Purpose = ""
|
||
|
ENT.Instructions = ""
|
||
|
|
||
|
ENT.Spawnable = false
|
||
|
ENT.AdminSpawnable = false
|
||
|
|
||
|
function ENT:OnRemove()
|
||
|
end
|