colobot/src/graphics/model/model_shadow_spot.h

16 lines
217 B
C++

#pragma once
namespace Gfx {
/**
* \struct ModelShadowSpot
* \brief Shadow spot data as saved in model file
*/
struct ModelShadowSpot
{
float radius = 0.0f;
float intensity = 0.0f;
};
} // namespace Gfx