--[[
Chat Indicator
by Nicholas "Lavacano" O'Connor
Purpose: So people know when other people are typing.

Subfile: client_hooks.lua
Purpose: Run the concommands defined in server.lua at the proper times.
]]

if SERVER then AddCSLuaFile("chatind_client_hooks.lua") end -- We WANT clients to have THIS file.

if CLIENT then
	hook.Add("StartChat", "TypingIndicatorOn", function(team) RunConsoleCommand("TypingIndicator_On") end)
	hook.Add("FinishChat", "TypingIndicatorOff", function() RunConsoleCommand("TypingIndicator_Off") end)
end
