8 lines
145 B
C
8 lines
145 B
C
|
#pragma once
|
||
|
#include "Engine\Math\OysterMath.h"
|
||
|
|
||
|
struct DirectionalLight
|
||
|
{
|
||
|
Oyster::Math::Float4 Irradiance;
|
||
|
Oyster::Math::Float4 Direction;
|
||
|
};
|