Nigel Barink
16b61986a1
* Added Texures to the two sample cubes * Modified mesh structure - mesh now contains indices and vertices - Vertices contain vertices and uv's (later on they will also contain normals) Solution definitely not perfect and needs improvement.
8 lines
261 B
C++
8 lines
261 B
C++
#pragma once
|
|
#include "imgui.h"
|
|
#include <BarinkEngine.h>
|
|
|
|
void CameraTool(Camera* camera);
|
|
void ScriptingTool(char* code);
|
|
void transformWindow(Transform& transform, std::string PanelName);
|
|
void materialWindow(Material& material, std::string PanelName); |