22 lines
413 B
C
22 lines
413 B
C
#ifndef cryphysics_h
|
|
#define cryphysics_h
|
|
#pragma once
|
|
|
|
#ifndef _XBOX
|
|
#ifdef PHYSICS_EXPORTS
|
|
#define CRYPHYSICS_API __declspec(dllexport)
|
|
#else
|
|
#define CRYPHYSICS_API __declspec(dllimport)
|
|
#define vector_class Vec3d
|
|
#endif
|
|
#else
|
|
#define CRYPHYSICS_API
|
|
#endif
|
|
|
|
#include "utils.h"
|
|
#include "primitives.h"
|
|
#include "physinterface.h"
|
|
|
|
extern "C" CRYPHYSICS_API IPhysicalWorld *CreatePhysicalWorld();
|
|
|
|
#endif |