home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
GameStar Special 2004 August
/
GSSH0804.iso
/
Action
/
Parsec47
/
Parsec47.exe
/
p47
/
src
/
abagames
/
util
/
Actor.d
next >
Wrap
Text File
|
2003-11-29
|
478b
|
22 lines
/*
* $Id: Actor.d,v 1.1.1.1 2003/11/28 17:26:30 kenta Exp $
*
* Copyright 2003 Kenta Cho. All rights reserved.
*/
module abagames.util.Actor;
import abagames.util.ActorInitializer;
/**
* Actor in the game that has the interface to move and draw.
*/
public class Actor {
public:
bool isExist;
public abstract Actor newActor();
public abstract void init(ActorInitializer ini);
public abstract void move();
public abstract void draw();
}