Skip to content

Commit

Permalink
[Android] Add docs generation for AndroidDevice
Browse files Browse the repository at this point in the history
  • Loading branch information
manugildev committed Apr 30, 2024
1 parent fee01d0 commit 971e6e3
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#if (UNITY_EDITOR || UNITY_ANDROID) && UNITY_6000_0_OR_NEWER
#if ((UNITY_EDITOR || UNITY_ANDROID) && UNITY_6000_0_OR_NEWER) || PACKAGE_DOCS_GENERATION

using System;
using UnityEngine.InputSystem.Controls;
Expand All @@ -7,7 +7,7 @@

namespace UnityEngine.InputSystem.Android.LowLevel
{
// <summary>
/// <summary>
/// Input device that represents an Android handheld device.
/// </summary>
[InputControlLayout(displayName = "Android Device", hideInUI = true)]
Expand Down Expand Up @@ -59,4 +59,4 @@ internal enum AndroidCustomCommand
}
}
}
#endif // (UNITY_EDITOR || UNITY_ANDROID) && UNITY_6000_0_OR_NEWER
#endif // ((UNITY_EDITOR || UNITY_ANDROID) && UNITY_6000_0_OR_NEWER) || PACKAGE_DOCS_GENERATION

0 comments on commit 971e6e3

Please sign in to comment.