blob: 403a7dc2dacce89ab081164cde72d3e56bf66d9d (
plain)
1
2
3
4
5
6
7
8
9
10
|
using System.Runtime.InteropServices;
namespace Steamworks;
[StructLayout(LayoutKind.Sequential, Pack = 8, Size = 1)]
[CallbackIdentity(1014)]
public struct NewUrlLaunchParameters_t
{
public const int k_iCallback = 1014;
}
|