-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f571291
commit 74fd3c3
Showing
3 changed files
with
21 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,15 @@ | ||
version_MAJOR = 1 | ||
version_MINOR = 0 | ||
version_PATCH = 1 | ||
version_TAG = "beta" | ||
print( | ||
(((((("Trailers Reborn " .. tostring(version_MAJOR)) .. ".") .. tostring(version_MINOR)) .. ".") .. tostring(version_PATCH)) .. "-") .. tostring(version_TAG) | ||
) | ||
AddCSLuaFile() | ||
if SERVER then | ||
include("TR/sv_init.lua") | ||
AddCSLuaFile("TR/cl_init.lua") | ||
include("TR/sh_deprecated.lua") | ||
elseif CLIENT then | ||
else | ||
include("TR/cl_init.lua") | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,17 @@ | ||
const version_MAJOR = 1 | ||
const version_MINOR = 0 | ||
const version_PATCH = 1 | ||
const version_TAG = "beta" | ||
|
||
|
||
print("Trailers Reborn " + version_MAJOR + "." + version_MINOR + "." + version_PATCH + "-" + version_TAG) | ||
|
||
|
||
AddCSLuaFile() | ||
if (SERVER) { | ||
include("TR/sv_init.lua") | ||
AddCSLuaFile("TR/cl_init.lua") | ||
include("TR/sh_deprecated.lua") | ||
} else if (CLIENT) { | ||
} else { | ||
include("TR/cl_init.lua") | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters