Files
directx-plane-game/Graphics2/Graphics2.h
iDunnoDev 65255f1321 Added the ASSIMP library
Added the files provided for the tutorial
Added the SplitMeshNode and SubMeshNode classes
2022-03-18 21:26:31 +00:00

21 lines
389 B
C++

#pragma once
#include "DirectXFramework.h"
#include "SharedMethods.h"
#include "TexturedCubeNode.h"
#include "MeshNode.h"
#include "SplitMeshNode.h"
#include <ctime>
class Graphics2 : public DirectXFramework
{
public:
void CreateSceneGraph();
void UpdateSceneGraph();
private:
float _currentRotation = 0.0f;
float _currentSideRotation = 0.0f;
float _currentPropRotation = 0.0f;
};