first commit of some basics
This commit is contained in:
16
TSE_Core/src/interfaces/IRenderTarget.hpp
Normal file
16
TSE_Core/src/interfaces/IRenderTarget.hpp
Normal file
@@ -0,0 +1,16 @@
|
||||
#pragma once
|
||||
|
||||
#include "IResizable.hpp"
|
||||
|
||||
namespace TSE
|
||||
{
|
||||
class IRenderTarget : public IResizable
|
||||
{
|
||||
public:
|
||||
int UnitScaler = 32;
|
||||
|
||||
virtual void Update();
|
||||
virtual void Bind();
|
||||
virtual void Unbind();
|
||||
};
|
||||
} // namespace TSE
|
||||
Reference in New Issue
Block a user