30 lines
818 B
C
30 lines
818 B
C
/**
|
|
* PANDA 3D SOFTWARE
|
|
* Copyright (c) Carnegie Mellon University. All rights reserved.
|
|
*
|
|
* All use of this software is subject to the terms of the revised BSD
|
|
* license. You should have received a copy of this license along
|
|
* with this source code in a file named "LICENSE."
|
|
*
|
|
* @file linmath_events.h
|
|
* @author drose
|
|
* @date 2002-03-12
|
|
*/
|
|
|
|
#ifndef LINMATH_EVENTS_H
|
|
#define LINMATH_EVENTS_H
|
|
|
|
#include "pandabase.h"
|
|
|
|
#include "paramValue.h"
|
|
#include "luse.h"
|
|
|
|
// This file defines a few more EventStore classes for storing linmath objects
|
|
// in an EventParameter. These are just for backward compatibility; they are
|
|
// defined as typedefs to ParamVecBase types. See paramValue.h.
|
|
|
|
typedef ParamVecBase2 EventStoreVec2;
|
|
typedef ParamVecBase3 EventStoreVec3;
|
|
typedef ParamMatrix4 EventStoreMat4;
|
|
|
|
#endif
|