forked from valve/halflife-sdk
36 lines
No EOL
781 B
C
36 lines
No EOL
781 B
C
/***
|
|
*
|
|
* WastedFX Tool chain
|
|
*
|
|
* Author: Joshua Coyne
|
|
* Copyright (C) 2003 The Wastes Project, All Rights Reserved.
|
|
*
|
|
***/
|
|
#if !defined( __WASTEDFX_H_ )
|
|
#define __WASTEDFX_H_
|
|
|
|
#include <math.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <windows.h>
|
|
#include "../resource.h"
|
|
#include "mathlib.h"
|
|
|
|
#pragma warning(disable:4244) // conversion from 'double' to 'float', possible loss of data
|
|
|
|
// TODO: Put this in project settings ?
|
|
#pragma comment(lib, "opengl32.lib")
|
|
#pragma comment(lib, "glu32.lib")
|
|
#include <gl/gl.h>
|
|
#include <gl/glu.h>
|
|
|
|
#define PROGRAM_NAME "WastedFX"
|
|
|
|
#define WINCLASS_MAIN "WFXMainWindow"
|
|
#define WINCLASS_GL "WFXGLPreview"
|
|
|
|
// TODO: Get rid of this when needed
|
|
//typedef float vec_t;
|
|
typedef vec_t psvec3_t[3];
|
|
|
|
#endif |