KavTest/KavTest/Messages/DirectionalLightSpawnMessag...

20 lines
493 B
C#

using Encompass;
using Microsoft.Xna.Framework;
namespace KavTest.Messages
{
public struct DirectionalLightSpawnMessage : IMessage
{
public Quaternion Orientation { get; }
public Color Color { get; }
public float Intensity { get; }
public DirectionalLightSpawnMessage(Quaternion orientation, Color color, float intensity)
{
Orientation = orientation;
Color = color;
Intensity = intensity;
}
}
}