-
Notifications
You must be signed in to change notification settings - Fork 0
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
Showing
24 changed files
with
814 additions
and
183 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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
#if defined _ru_math_included | ||
#endinput | ||
#endif | ||
#define _ru_math_included | ||
|
||
#define X 0 | ||
#define Y 1 | ||
#define Z 2 | ||
|
||
#define VECTOR_SIZE 3 | ||
|
||
#define LEFT_FRONT_BOTTOM 0 | ||
#define LEFT_FRONT_TOP 1 | ||
#define LEFT_REAR_BOTTOM 2 | ||
#define LEFT_REAR_TOP 3 | ||
#define RIGHT_FRONT_BOTTOM 4 | ||
#define RIGHT_FRONT_TOP 5 | ||
#define RIGHT_REAR_BOTTOM 6 | ||
#define RIGHT_REAR_TOP 7 | ||
|
||
#define VERTICES_COUNT 8 |
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
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#if defined _ru_storage_included | ||
#endinput | ||
#endif | ||
#define _ru_storage_included | ||
|
||
#define PERMISSIONS_USER (FPERM_U_READ | FPERM_U_WRITE | FPERM_U_EXEC) | ||
#define PERMISSIONS_GROUP (FPERM_G_READ | FPERM_G_WRITE | FPERM_G_EXEC) | ||
#define PERMISSIONS_OTHER (FPERM_O_READ | FPERM_O_EXEC) | ||
#define PERMISSIONS (PERMISSIONS_USER | PERMISSIONS_GROUP | PERMISSIONS_OTHER) | ||
|
||
#define KEY_ROOT "Entities" | ||
#define KEY_CRATES "Crates" | ||
#define KEY_CRATE_POSITION "position" | ||
#define KEY_TRIGGERS "Triggers" | ||
#define KEY_TRIGGER_ENTITY "entity" | ||
|
||
#define ID_MAX_LENGTH 12 | ||
#define CREATE_YES true | ||
|
||
typedef KeyValuesCallback = function void (KeyValues kv); |
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#if defined _ru_visualizer_included | ||
#endinput | ||
#endif | ||
#define _ru_visualizer_included | ||
|
||
#define BEAM_START_FRAME 0 | ||
#define BEAM_FRAME_RATE 0 | ||
#define BEAM_LIFE_TIME 3.0 | ||
#define BEAM_WIDTH 2.0 | ||
#define BEAM_END_WIDTH BEAM_WIDTH | ||
#define BEAM_FADE_LENGTH 0 | ||
#define BEAM_AMPLITUDE 0.0 | ||
#define BEAM_SPEED 0 | ||
#define BEAM_COLOR_RED 255 | ||
#define BEAM_COLOR_GREEN 255 | ||
#define BEAM_COLOR_BLUE 0 | ||
#define BEAM_COLOR_ALPHA 255 |
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
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
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
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.