7cbe8acf30
Now the code is being compiled through .lib files!
21 lines
529 B
C++
21 lines
529 B
C++
#pragma once
|
|
|
|
#include <charcoal-builtin/LitShadowedScene.h>
|
|
#include <charcoal-builtin/BuiltinCamera3D.h>
|
|
|
|
using namespace charcoal;
|
|
using namespace charcoal::builtin;
|
|
|
|
class MyBuiltinLitShadowedScene : public litshadowed::Scene
|
|
{
|
|
public:
|
|
MyBuiltinLitShadowedScene(Application& application);
|
|
|
|
void update(float delta_time, clock_t clock) override;
|
|
private:
|
|
litshadowed::Renderable m_cube;
|
|
litshadowed::Renderable m_plane;
|
|
builtin::Camera3D m_camera;
|
|
litshadowed::Batch& m_cube_batch;
|
|
litshadowed::Batch& m_plane_batch;
|
|
}; |