X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Flibgame%2Fsystem.h;h=174a95ed6cf46a4f986723b6c48b18ee8716725e;hb=6d7ebf6db8a9a57f2e3e398da1d2f7d8d084523f;hp=40783a5cef8ce157ec7327d33ac185e4dc284312;hpb=95ff39b11bc3c268d8206193bad1433ac9526c94;p=rocksndiamonds.git diff --git a/src/libgame/system.h b/src/libgame/system.h index 40783a5c..174a95ed 100644 --- a/src/libgame/system.h +++ b/src/libgame/system.h @@ -561,9 +561,13 @@ struct AudioSystemInfo struct FontBitmapInfo { Bitmap *bitmap; + int src_x, src_y; /* start position of animation frames */ int width, height; /* width/height of each animation frame */ - int draw_x, draw_y; /* offset for drawing font characters */ + + int draw_xoffset; /* offset for drawing font characters */ + int draw_yoffset; /* offset for drawing font characters */ + int num_chars; int num_chars_per_line; @@ -645,6 +649,8 @@ struct SetupEditorInfo boolean el_dynamic; boolean el_headlines; + + boolean show_element_token; }; struct SetupEditorCascadeInfo @@ -992,6 +998,7 @@ void ReloadCustomImage(Bitmap *, char *); Bitmap *ZoomBitmap(Bitmap *, int, int); void CreateBitmapWithSmallBitmaps(Bitmap *, int); +void ScaleBitmap(Bitmap *, int); void SetMouseCursor(int);