mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-11-16 16:09:42 +01:00
c64fd89325
YOLO. This is a repeat of #642. As before, I just did rg -l '\t' | xargs -n 1 sed -i -e 's/\t/ /g' inside the desktop_version/ folder.
20 lines
276 B
C
20 lines
276 B
C
#ifndef TOWERBG_H
|
|
#define TOWERBG_H
|
|
|
|
#include <SDL.h>
|
|
|
|
struct TowerBG
|
|
{
|
|
SDL_Surface* buffer;
|
|
SDL_Surface* buffer_lerp;
|
|
bool tdrawback;
|
|
int bypos;
|
|
int bscroll;
|
|
int colstate;
|
|
int scrolldir;
|
|
int r;
|
|
int g;
|
|
int b;
|
|
};
|
|
|
|
#endif /* TOWERBG_H */
|