-- @name Input System -- @author DarkSupah -- @shared -- @include ./cl_input.txt -- @include ./sv_input.txt -- @include ./configs/sample.txt require('./configs/sample.txt') local options = { Axles = Axles } if SERVER then require('./sv_input.txt') else require('./cl_input.txt') end local input = Input:new(options) hook.add('tick', 'InputUpdate', function() input:update() end)