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.
25 lines
487 B
25 lines
487 B
//====== Copyright © 1996-2008, Valve Corporation, All rights reserved. =======
|
|
//
|
|
// Purpose:
|
|
//
|
|
//=============================================================================
|
|
|
|
#ifndef DMERIGHANDLE_H
|
|
#define DMERIGHANDLE_H
|
|
#ifdef _WIN32
|
|
#pragma once
|
|
#endif
|
|
|
|
#include "datamodel/dmelement.h"
|
|
#include "movieobjects/dmedag.h"
|
|
#include "movieobjects/dmeoperator.h"
|
|
|
|
class CDmeRigHandle : public CDmeDag
|
|
{
|
|
DEFINE_ELEMENT( CDmeRigHandle, CDmeDag );
|
|
|
|
public:
|
|
|
|
};
|
|
|
|
#endif // DMERIGHANDLE_H
|