mirror of
https://github.com/NexusForever/NexusForever
synced 2026-08-14 00:26:05 -04:00
20 lines
570 B
C#
20 lines
570 B
C#
namespace NexusForever.Shared.GameTable.Model
|
|
{
|
|
public class FullScreenEffectEntry
|
|
{
|
|
public uint Id;
|
|
public string Description;
|
|
public string TexturePath;
|
|
public string ModelPath;
|
|
public uint Priority;
|
|
public uint FullScreenEffectTypeEnum;
|
|
public float AlphaMinStart;
|
|
public float AlphaMinEnd;
|
|
public float AlphaStart;
|
|
public float AlphaEnd;
|
|
public float HzStart;
|
|
public float HzEnd;
|
|
public float SaturationStart;
|
|
public float SaturationEnd;
|
|
}
|
|
}
|