This commit is contained in:
romkazvo
2023-08-07 19:29:24 +08:00
commit 34d6c5d489
4832 changed files with 1389451 additions and 0 deletions

23
CryGame/CryGame.h Normal file
View File

@@ -0,0 +1,23 @@
//////////////////////////////////////////////////////////////////////
//
// Crytek Source code
// Copyright (c) Crytek 2001-2004
//
//////////////////////////////////////////////////////////////////////
#ifndef __crygame_h__
#define __crygame_h__
#pragma once
#ifdef WIN32
#ifdef CRYGAME_EXPORTS
#define CRYGAME_API __declspec(dllexport)
#else
#define CRYGAME_API __declspec(dllimport)
#endif
#else
#define CRYGAME_API
#endif
#endif // __crygame_h__