12 lines
232 B
C#
12 lines
232 B
C#
|
using System.Runtime.InteropServices;
|
||
|
|
||
|
namespace MoonWorksTest
|
||
|
{
|
||
|
[StructLayout(LayoutKind.Sequential)]
|
||
|
struct RaymarchUniforms
|
||
|
{
|
||
|
public float time, padding;
|
||
|
public float resolutionX, resolutionY;
|
||
|
}
|
||
|
}
|