mirror of
https://github.com/Facepunch/sbox-public.git
synced 2026-05-24 06:46:26 -04:00
This commit imports the C# engine code and game files, excluding C++ source code. [Source-Commit: ceb3d758046e50faa6258bc3b658a30c97743268]
16 lines
332 B
HLSL
16 lines
332 B
HLSL
#ifndef COMMON_SHARED_H
|
|
#define COMMON_SHARED_H
|
|
|
|
#include "system.fxc" // This should always be the first include in COMMON
|
|
#include "sbox_shared.fxc"
|
|
#include "common_samplers.fxc"
|
|
#include "common/classes/_classes.hlsl"
|
|
|
|
//
|
|
// Helpers
|
|
//
|
|
|
|
static const float ToDegrees = 57.2958f;
|
|
static const float ToRadians = 0.0174533f;
|
|
|
|
#endif |