mirror of
https://github.com/ENSL/NS.git
synced 2024-11-15 17:31:34 +00:00
8552ac617c
git-svn-id: https://unknownworlds.svn.cloudforge.com/ns1@1 67975925-1194-0748-b3d5-c16f83f1a3a1
38 lines
No EOL
1.1 KiB
C
38 lines
No EOL
1.1 KiB
C
/***
|
|
*
|
|
* Copyright (c) 1999, Valve LLC. All rights reserved.
|
|
*
|
|
* This product contains software technology licensed from Id
|
|
* Software, Inc. ("Id Technology"). Id Technology (c) 1996 Id Software, Inc.
|
|
* All Rights Reserved.
|
|
*
|
|
* Use, distribution, and modification of this source code and/or resulting
|
|
* object code is restricted to non-commercial enhancements to products from
|
|
* Valve LLC. All other use, distribution, or modification is prohibited
|
|
* without written permission from Valve LLC.
|
|
*
|
|
****/
|
|
// Vector.h
|
|
// A subset of the extdll.h in the project HL Entity DLL
|
|
//
|
|
#ifndef UTIL_VECTOR_H
|
|
#define UTIL_VECTOR_H
|
|
|
|
// Misc C-runtime library headers
|
|
#include "STDIO.H"
|
|
#include "STDLIB.H"
|
|
#include "MATH.H"
|
|
|
|
// Header file containing definition of globalvars_t and entvars_t
|
|
typedef int func_t; //
|
|
typedef int string_t; // from engine's pr_comp.h;
|
|
typedef float vec_t; // needed before including progdefs.h
|
|
|
|
#include "common/vectorclasses.h"
|
|
|
|
#ifndef THEVECTOR3T
|
|
#define THEVECTOR3T
|
|
#define vec3_t Vector
|
|
#endif
|
|
|
|
#endif |