mirror of
https://github.com/Linloir/SceneEditor.git
synced 2025-12-17 07:28:12 +08:00
24 lines
277 B
C++
24 lines
277 B
C++
#pragma once
|
|
|
|
#include <GLM/glm.hpp>
|
|
#include <string>
|
|
#include <queue>
|
|
|
|
#include "shader.h"
|
|
#include "logger.h"
|
|
|
|
class Illuminant {
|
|
|
|
};
|
|
|
|
class DirLight : public Illuminant {
|
|
|
|
};
|
|
|
|
class SpotLight : public Illuminant {
|
|
|
|
};
|
|
|
|
class PointLight : public Illuminant {
|
|
|
|
}; |