This file contains hidden or 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
/********************************************************************** | |
Simple Integer/etc nums types definition header for C/C++ | |
Git fun, m8. Made by UND85D in 2018 | |
***********************************************************************/ | |
#ifndef SNTYPES_HEADER | |
#define SNTYPES_HEADER | |
#if (('1234' >> 24) == '1') /* If system IS Little Endian aka Low Endian aka Intel's shit | |
(Thousand two hundred thirty four is 4321) */ |
This file contains hidden or 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
/* | |
* The BAGBA1 Gate Controller Script | |
* Made by UND85D/undbsd | |
* Fully(I think) auto | |
* | |
* Main Part of BAGBA1 Controller System | |
* | |
* btw BAGBA = BBA | |
*/ |
This file contains hidden or 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
/* | |
* The BAGBA1 Ring Controller Script | |
* Made by UND85D/undbsd | |
* Fully(I think) auto | |
* | |
* Part of BAGBA1 Controller System | |
* | |
* btw BAGBA = BBA | |
*/ |
This file contains hidden or 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
# Git-Prompt.SH | |
# Rewritten by ESUVSTAHT (undbsd) | |
## Window Title | |
PS1="\[\033]0;$MSYSTEM\007\]" | |
## Command Greeting | |
### Append username@hostname | |
PS1="$PS1"'\033[1;32m' | |
PS1="$PS1$(whoami)@$(uname -n)" |
This file contains hidden or 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
[] [] [][] [][] [][][] [][][] [][][] [] [] | |
[] [] [] [] [] [] [] [] [] [] [] | |
[] [] [] [] [] [] [] [][] [] [][][] | |
[] [] [] [] [] [] [] [] [] [] [] | |
[][] [] [] [][][] [] [][][] [][][] [] [] | |
--> The UNDTECH Vessel Index | |
Any vessel ever produced or constructed by UNDTECH has a unique vessel index. |
This file contains hidden or 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
#include "cbase.h" | |
#include "hud_bitmapnumericdisplay.h" | |
#include "iclientmode.h" | |
#include <Color.h> | |
#include <KeyValues.h> | |
#include <vgui/ISurface.h> | |
#include <vgui/ISystem.h> | |
#include <vgui/IVGui.h> |
This file contains hidden or 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
#root "C:/Steam/SteamApps/Common/Half-Life/valve/sound/" | |
//========================================= | |
//COMBINE SOLDIER/METROCOP SEQUENCES | |
//========================================= | |
$sequence cstest : combine_s { | |
$play on1 | |
$batch alert1, anticitizenone |
This file contains hidden or 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
//Stack element | |
class stackElement { | |
private: | |
//Data field, contains pointer to uint64_t, double or std::string | |
void *data; | |
//Size of data | |
size_t size; | |
//Have we already set value or not? |
This file contains hidden or 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
//The V16 Virtual Machine | |
//Licensed under the "BSD-2-Clause" License | |
#ifndef _V16_H | |
#define _V16_H | |
//Standard C Header Files | |
#include <stdint.h> | |
#include <stddef.h> |
This file contains hidden or 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
using System; | |
namespace Aux2D.Shared.MathTypes | |
{ | |
/// <summary> | |
/// 2-Dimensional vector. | |
/// </summary> | |
class Vector2D | |
{ | |
/// <summary> |
OlderNewer