mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2026-01-30 01:48:15 +03:00
Hello WWWWWWorld!
This commit is contained in:
31
desktop_version/src/BlockV.h
Normal file
31
desktop_version/src/BlockV.h
Normal file
@@ -0,0 +1,31 @@
|
||||
#ifndef BLOCKV_H
|
||||
#define BLOCKV_H
|
||||
|
||||
#include "SDL.h"
|
||||
#include <string>
|
||||
|
||||
class blockclass
|
||||
{
|
||||
public:
|
||||
blockclass();
|
||||
|
||||
void clear();
|
||||
|
||||
void rectset(const int xi, const int yi, const int wi, const int hi);
|
||||
public:
|
||||
//Fundamentals
|
||||
bool active;
|
||||
SDL_Rect rect;
|
||||
int type;
|
||||
int trigger;
|
||||
int xp, yp, wp, hp;
|
||||
std::string script, prompt;
|
||||
int r, g, b;
|
||||
|
||||
//These would come from the sprite in the flash
|
||||
float x;
|
||||
float y;
|
||||
|
||||
};
|
||||
|
||||
#endif /* BLOCKV_H */
|
||||
Reference in New Issue
Block a user