Benny/gamemodes/benny/gamemode/shared.lua

29 lines
481 B
Lua
Raw Normal View History

2023-09-03 09:31:16 -04:00
GM.Name = "Your Name Is Benny"
2024-03-07 20:34:16 -05:00
GM.Author = "Fesiug, Oranche, Alex"
2023-09-03 09:31:16 -04:00
GM.Email = "N/A"
GM.Website = "N/A"
2023-09-06 04:06:14 -04:00
BENNY = {}
2024-03-07 20:34:16 -05:00
local AC, IN = AddCSLuaFile, include
2023-09-03 09:31:16 -04:00
2024-03-08 20:10:47 -05:00
local CL = SERVER and AddCSLuaFile or include
2024-03-07 22:34:29 -05:00
AC("language.lua")
IN("language.lua")
2024-03-07 20:34:16 -05:00
AC("camera.lua")
IN("camera.lua")
AC("items.lua")
2024-03-07 21:19:30 -05:00
IN("items.lua")
AC("player.lua")
IN("player.lua")
AC("player_class.lua")
IN("player_class.lua")
AC("inventory.lua")
IN("inventory.lua")
2024-03-08 20:10:47 -05:00
AC("debugmenu.lua")
IN("debugmenu.lua")
CL("hud.lua")