MoonWorks/src/Graphics/Bindings/BufferBinding.cs

15 lines
219 B
C#
Raw Normal View History

2022-02-23 05:14:32 +00:00
namespace MoonWorks.Graphics
{
2022-02-23 05:14:32 +00:00
public struct BufferBinding
{
public Buffer Buffer;
public ulong Offset;
2022-02-23 05:14:32 +00:00
public BufferBinding(Buffer buffer, ulong offset)
{
Buffer = buffer;
Offset = offset;
}
}
}