13 lines
347 B
C#
13 lines
347 B
C#
// Copyright (c) 2024 Augie R. Maddox, Guavaman Enterprises. All rights reserved.
|
|
|
|
namespace Rewired.Demos.CustomPlatform {
|
|
|
|
/// <summary>
|
|
/// Example identifying information for a controller.
|
|
/// </summary>
|
|
public struct MyPlatformControllerIdentifier {
|
|
public ushort vendorId;
|
|
public ushort productId;
|
|
}
|
|
}
|