summaryrefslogtreecommitdiff
path: root/Assembly_Firstpass/Steamworks/OverlayBrowserProtocolNavigation_t.cs
blob: f9eb59a72d2f59182db0b86b5413517cbf9e296c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
using System.Runtime.InteropServices;

namespace Steamworks;

[StructLayout(LayoutKind.Sequential, Pack = 8)]
[CallbackIdentity(349)]
public struct OverlayBrowserProtocolNavigation_t
{
	public const int k_iCallback = 349;

	[MarshalAs(UnmanagedType.ByValArray, SizeConst = 1024)]
	private byte[] rgchURI_;

	public string rgchURI
	{
		get
		{
			return InteropHelp.ByteArrayToStringUTF8(rgchURI_);
		}
		set
		{
			InteropHelp.StringToByteArrayUTF8(value, rgchURI_, 1024);
		}
	}
}