Files
FC1/CryPhysics/CryPhysics.h
romkazvo 34d6c5d489 123
2023-08-07 19:29:24 +08:00

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