sdraw_mods_cvr/ml_lme/vendor/LeapCSharp/PointMapping.cs
SDraw 3609500959
Logic rewrite
Update to LeapCSharp 5.13.1
Not tested in VR
2022-09-02 13:44:32 +03:00

20 lines
No EOL
800 B
C#

/******************************************************************************
* Copyright (C) Ultraleap, Inc. 2011-2021. *
* *
* Use subject to the terms of the Apache License 2.0 available at *
* http://www.apache.org/licenses/LICENSE-2.0, or another agreement *
* between Ultraleap and you, your company or other organization. *
******************************************************************************/
namespace Leap
{
#pragma warning disable 0618
public struct PointMapping
{
public long frameId;
public long timestamp;
public Vector[] points;
public uint[] ids;
}
#pragma warning restore 0618
}