mirror of
https://github.com/hanetzer/sdraw_mods_cvr.git
synced 2025-09-03 10:29:22 +00:00
18 lines
No EOL
755 B
C#
18 lines
No EOL
755 B
C#
/******************************************************************************
|
|
* Copyright (C) Ultraleap, Inc. 2011-2023. *
|
|
* *
|
|
* 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
|
|
{
|
|
public struct PointMapping
|
|
{
|
|
public long frameId;
|
|
public long timestamp;
|
|
public UnityEngine.Vector3[] points;
|
|
public uint[] ids;
|
|
}
|
|
} |