Details | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 239 | chris | 1 | package com.gebauz.Bauzoid.input; |
| 2 | |||
| 3 | import com.gebauz.Bauzoid.app.Game; |
||
| 4 | import com.gebauz.Bauzoid.app.GameObject; |
||
| 5 | |||
| 6 | public class Input extends GameObject |
||
| 7 | { |
||
| 8 | |||
| 9 | public Input(Game game) |
||
| 10 | { |
||
| 11 | super(game); |
||
| 12 | |||
| 13 | } |
||
| 14 | |||
| 15 | public void init() |
||
| 16 | { |
||
| 17 | |||
| 18 | } |
||
| 19 | |||
| 20 | public void exit() |
||
| 21 | { |
||
| 22 | |||
| 23 | } |
||
| 24 | |||
| 25 | public void update(float deltaTime) |
||
| 26 | { |
||
| 27 | |||
| 28 | } |
||
| 29 | |||
| 30 | public void render() |
||
| 31 | { |
||
| 32 | |||
| 33 | } |
||
| 34 | |||
| 35 | public void onPause() |
||
| 36 | { |
||
| 37 | |||
| 38 | } |
||
| 39 | |||
| 40 | public void onResume() |
||
| 41 | { |
||
| 42 | |||
| 43 | } |
||
| 44 | } |