bp-prism-game
Version:
The BP Prism Game
20 lines (19 loc) • 550 B
TypeScript
import { GameService } from '../../service/game.service';
import { AlienClass } from '../alien/alien.class';
/**
* The Alien 2 Class
*/
export declare class Alien2Class extends AlienClass {
/**
* Constructor
* @param gameService The GameService
* @param ctx The ctx
* @param guid The guid of the alien
* @param spawnLocation The guid of the alien
*/
constructor(gameService: GameService, ctx: CanvasRenderingContext2D, guid: number);
/**
* Load the alien Images
*/
private loadAlienImages;
}