added rest of basics in TSE_Core
This commit is contained in:
16
TSE_Core/src/interfaces/ITextureHelper.hpp
Normal file
16
TSE_Core/src/interfaces/ITextureHelper.hpp
Normal file
@@ -0,0 +1,16 @@
|
||||
#pragma once
|
||||
|
||||
namespace TSE
|
||||
{
|
||||
class Texture;
|
||||
|
||||
class ITextureHelper
|
||||
{
|
||||
public:
|
||||
virtual void Bind(const Texture* tex) = 0;
|
||||
virtual void UnBind(const Texture* tex) = 0;
|
||||
virtual void Apply(Texture* tex) = 0;
|
||||
virtual void Regist(Texture* tex) = 0;
|
||||
virtual void PlatromDestroy(Texture* tex) = 0;
|
||||
};
|
||||
} // namespace TSE
|
||||
Reference in New Issue
Block a user