mirror of
https://github.com/HowestDAE/dae16-VerhulstBram.git
synced 2025-12-16 20:41:47 +01:00
21 lines
324 B
C++
21 lines
324 B
C++
#pragma once
|
|
#include "Texture.h"
|
|
#include "TextureManager.h"
|
|
|
|
class Building
|
|
{
|
|
public:
|
|
Building(const std::string& filePath, const Vector2f& position, TextureManager* pTextureManager);
|
|
~Building();
|
|
|
|
void Draw() const;
|
|
void Update(float dt);
|
|
|
|
|
|
private:
|
|
Texture* m_Texture;
|
|
Vector2f m_Position;
|
|
Vector2f m_Size;
|
|
|
|
};
|