rnd-20090719-1-src
[rocksndiamonds.git] / src / game_sp / init.c
1
2 #include "main_sp.h"
3 #include "global.h"
4
5
6 Bitmap *sp_objects;
7
8 Bitmap *screenBitmap;
9
10
11 void sp_open_all()
12 {
13   SetBitmaps_SP(&sp_objects);
14
15   screenBitmap = CreateBitmap(MAX_BUF_XSIZE * TILEX, MAX_BUF_YSIZE * TILEY,
16                               DEFAULT_DEPTH);
17 }
18
19 void sp_close_all()
20 {
21 }