mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-14 19:29:36 +01:00
10 lines
199 B
C#
10 lines
199 B
C#
namespace Robust.Shared.Interop.RobustNative.Vorbis;
|
|
|
|
internal unsafe partial struct alloc_chain
|
|
{
|
|
public void* ptr;
|
|
|
|
[NativeTypeName("struct alloc_chain *")]
|
|
public alloc_chain* next;
|
|
}
|