gmod-lcpu/lua/autorun/lcpu_load.lua

16 lines
388 B
Lua
Raw Normal View History

2023-07-19 03:18:34 -04:00
AddCSLuaFile()
-- prime the native lua module & add clientside files to send
-- if running on the server
2023-07-24 06:50:18 -04:00
if SERVER then
require("lcpu_native")
if LCPUNative.ModuleVersion ~= 1 then
2023-07-24 06:50:18 -04:00
print("Your LCPU native module is somehow lagging behind the Lua code. Please rebuild it.")
LCPUNative = nil
return
end
--LCPUNative.EnableDebug()
2023-07-24 06:50:18 -04:00
AddCSLuaFile("entities/gmod_lcpu_cpu.lua")
end