// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; namespace SDL { [Typedef] public enum SDL_HapticID : UInt32; public static partial class SDL3 { public static unsafe SDLArray? SDL_GetHaptics() { int count; var array = SDL_GetHaptics(&count); return SDLArray.Create(array, count); } } }