mirror of
https://github.com/WinDurango/WinDurango.git
synced 2026-01-08 20:29:44 -06:00
15 lines
368 B
C++
15 lines
368 B
C++
#pragma once
|
|
#include "Windows.Kinect.DepthFrameReference.g.h"
|
|
|
|
|
|
namespace winrt::Windows::Kinect::implementation
|
|
{
|
|
struct DepthFrameReference : DepthFrameReferenceT<DepthFrameReference>
|
|
{
|
|
DepthFrameReference() = default;
|
|
|
|
winrt::Windows::Kinect::DepthFrame AcquireFrame();
|
|
winrt::Windows::Foundation::TimeSpan RelativeTime();
|
|
};
|
|
}
|