Move similar/main/effects.c -> similar/main/effects.cpp

This commit is contained in:
Kp 2012-11-11 22:12:51 +00:00
parent c7e34f5330
commit 782372d6b8
3 changed files with 9 additions and 1 deletions

View file

@ -759,7 +759,7 @@ class DXXProgram(DXXCommon):
'main/controls.cpp',
'main/credits.cpp',
'main/digiobj.cpp',
'main/effects.c',
'main/effects.cpp',
'main/fvi.c',
'main/game.c',
'main/gamecntl.c',

View file

@ -25,6 +25,10 @@ COPYRIGHT 1993-1999 PARALLAX SOFTWARE CORPORATION. ALL RIGHTS RESERVED.
#include "object.h"
#include "piggy.h"
#ifdef __cplusplus
extern "C" {
#endif
#define VCLIP_SMALL_EXPLOSION 2
#define VCLIP_PLAYER_HIT 1
#define VCLIP_MORPHING_ROBOT 10
@ -69,4 +73,8 @@ extern void draw_weapon_vclip(object *obj);
*/
extern int vclip_read_n(vclip *vc, int n, PHYSFS_file *fp);
#ifdef __cplusplus
}
#endif
#endif /* _VCLIP_H */