Added the ASSIMP library
Added the files provided for the tutorial Added the SplitMeshNode and SubMeshNode classes
This commit is contained in:
13
Graphics2/Renderer.h
Normal file
13
Graphics2/Renderer.h
Normal file
@ -0,0 +1,13 @@
|
||||
#pragma once
|
||||
|
||||
class Renderer
|
||||
{
|
||||
public:
|
||||
Renderer() {}
|
||||
virtual ~Renderer() {}
|
||||
|
||||
virtual bool Initialise() = 0;
|
||||
virtual void Render() = 0;
|
||||
virtual void Shutdown() {};
|
||||
};
|
||||
|
Reference in New Issue
Block a user