Go to most recent revision | Details | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 837 | chris | 1 | package com.gebauz.burutaru.game.entities; |
| 2 | |||
| 3 | import com.gebauz.bauzoid.game.entities.BaseEntity; |
||
| 4 | import com.gebauz.burutaru.game.GameLogic; |
||
| 5 | |||
| 6 | /* Game-specific entity base class. */ |
||
| 7 | public abstract class Entity extends BaseEntity |
||
| 8 | { |
||
| 9 | |||
| 10 | // Constants======================================================================================== |
||
| 11 | |||
| 12 | // Embedded Types=================================================================================== |
||
| 13 | |||
| 14 | // Fields=========================================================================================== |
||
| 15 | |||
| 16 | protected GameLogic mGameLogic = null; |
||
| 17 | |||
| 18 | // Methods========================================================================================== |
||
| 19 | |||
| 20 | public Entity(GameLogic gameLogic) |
||
| 21 | { |
||
| 22 | super(gameLogic.getGame()); |
||
| 23 | mGameLogic = gameLogic; |
||
| 24 | } |
||
| 25 | |||
| 26 | // Getters/Setters================================================================================== |
||
| 27 | |||
| 28 | } |