Files
Seele/src/Engine/Component/Camera.h
T

14 lines
243 B
C++
Raw Normal View History

#pragma once
#include "Component.h"
#include "Math/Matrix.h"
#include "Transform.h"
2024-06-09 12:20:04 +02:00
namespace Seele {
namespace Component {
struct Camera {
2024-01-02 16:48:03 +01:00
Matrix4 viewMatrix;
2025-04-11 23:13:19 +02:00
bool mainCamera = false;
};
} // namespace Component
} // namespace Seele