Details | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 835 | chris | 1 | package com.gebauz.bauzoid.app; |
| 2 | |||
| 3 | import com.gebauz.bauzoid.game.Game; |
||
| 4 | import com.gebauz.bauzoid.game.GameObject; |
||
| 5 | |||
| 6 | public abstract class CustomServices extends GameObject |
||
| 7 | { |
||
| 8 | |||
| 9 | public CustomServices(Game game) |
||
| 10 | { |
||
| 11 | super(game); |
||
| 12 | } |
||
| 13 | |||
| 14 | public void init() |
||
| 15 | { |
||
| 16 | |||
| 17 | } |
||
| 18 | |||
| 19 | public void exit() |
||
| 20 | { |
||
| 21 | |||
| 22 | } |
||
| 23 | |||
| 24 | public void update(float deltaTime) |
||
| 25 | { |
||
| 26 | |||
| 27 | } |
||
| 28 | |||
| 29 | public void render() |
||
| 30 | { |
||
| 31 | |||
| 32 | } |
||
| 33 | |||
| 34 | } |