This commit is contained in:
parent
cea257a96c
commit
ae6a869fc2
1 changed files with 36 additions and 0 deletions
36
source/enemy/nworm.cpp
Normal file
36
source/enemy/nworm.cpp
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
/*=========================================================================
|
||||||
|
|
||||||
|
nworm.cpp
|
||||||
|
|
||||||
|
Author: CRB
|
||||||
|
Created:
|
||||||
|
Project: Spongebob
|
||||||
|
Purpose:
|
||||||
|
|
||||||
|
Copyright (c) 2001 Climax Development Ltd
|
||||||
|
|
||||||
|
===========================================================================*/
|
||||||
|
|
||||||
|
#ifndef __ENEMY_NPC_H__
|
||||||
|
#include "enemy\npc.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
//#ifndef __GAME_GAME_H__
|
||||||
|
//#include "game\game.h"
|
||||||
|
//#endif
|
||||||
|
|
||||||
|
#ifndef __PLAYER_PLAYER_H__
|
||||||
|
#include "player\player.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
void CNpcEnemy::processParasiticWormMovement( int _frames )
|
||||||
|
{
|
||||||
|
s32 moveX = 0, moveY = 0;
|
||||||
|
s32 moveVel = 0;
|
||||||
|
s32 moveDist = 0;
|
||||||
|
|
||||||
|
processGenericFixedPathMove( _frames, &moveX, &moveY, &moveVel, &moveDist );
|
||||||
|
|
||||||
|
Pos.vx += moveX;
|
||||||
|
Pos.vy += moveY;
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue