chore: appropriately rename field and change docs
parent
62b7332f1d
commit
2c1c425924
|
@ -11,13 +11,13 @@ namespace SkyHook
|
||||||
public struct SkyHookEvent
|
public struct SkyHookEvent
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// When the key's state was updated(sec).
|
/// Precise time of the key's state update in seconds.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public readonly ulong TimeSec;
|
public readonly ulong TimeSec;
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// When the key's state was updated(nsec).
|
/// Precise time of the key's state update but only contains nanoseconds.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public readonly uint TimeNsec;
|
public readonly uint TimeSubsecNano;
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Whether the key is pressed or released.
|
/// Whether the key is pressed or released.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
Reference in New Issue