You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
467 B
22 lines
467 B
//=========== Copyright Valve Corporation, All rights reserved. ===============//
|
|
//
|
|
// Purpose: Public header for panorama UI framework
|
|
//
|
|
//
|
|
//=============================================================================//
|
|
|
|
#ifndef PANORAMA_PANORAMACURVES_H
|
|
#define PANORAMA_PANORAMACURVES_H
|
|
#pragma once
|
|
|
|
#include "panoramatypes.h"
|
|
|
|
namespace panorama
|
|
{
|
|
|
|
void GetAnimationCurveControlPoints( EAnimationTimingFunction eAnimation, Vector2D points[4] );
|
|
|
|
};
|
|
|
|
#endif
|
|
|