mirror of
https://github.com/microsoft/Microsoft-3D-Movie-Maker.git
synced 2024-11-22 02:12:33 +01:00
25 lines
379 B
C
25 lines
379 B
C
/*
|
|
* Copyright (c) 1993-1995 by Argonaut Technologies Limited. All rights reserved.
|
|
*
|
|
* $Id: animate.h 1.3 1995/02/22 21:36:55 sam Exp $
|
|
* $Locker: $
|
|
*
|
|
* Definitons for a p3d Animate
|
|
*/
|
|
#ifndef _ANIMATE_H_
|
|
#define _ANIMATE_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct br_animation {
|
|
br_matrix4 matrix;
|
|
} br_animation;
|
|
|
|
#ifdef __cplusplus
|
|
};
|
|
#endif
|
|
#endif
|
|
|