booster affiche

affiche simplement un carre rouge pour l'instant et ne se ramasse pas encore
This commit is contained in:
Frederic Leger
2023-11-20 15:40:43 -05:00
parent 225c815da4
commit 8769aa9e38
10 changed files with 112 additions and 4 deletions

14
SQCSim2021/booster.h Normal file
View File

@@ -0,0 +1,14 @@
#ifndef BOOSTER_H__
#define BOOSTER_H__
#include "define.h"
#include "textureatlas.h"
#include "shader.h"
#include "../SQCSim-common/vector3.h"
#include "../SQCSim-common/transformation.h"
class Booster {
public:
void RenderBillboard(const Vector3f pos, TextureAtlas& textureAtlas, TextureAtlas::TextureIndex idx, Shader& shader, Transformation tran);
};
#endif