Files
Fishing2/Assets/ThirdParty/Rewired/Examples/CustomPlatform/Scripts/MyPlatformControllerIdentifier.cs
2025-05-10 12:49:47 +08:00

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;
}
}