summaryrefslogtreecommitdiff
path: root/public/movieobjects/dmeinput.h
blob: e88b8d4afab8599c55628695dd4fc5292cd3e7c7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// The abstract base operator class - all actions within the scenegraph happen via operators
//
//=============================================================================

#ifndef DMEINPUT_H
#define DMEINPUT_H
#ifdef _WIN32
#pragma once
#endif

#include "movieobjects/dmeoperator.h"


//-----------------------------------------------------------------------------
// A class representing a camera
//-----------------------------------------------------------------------------
class CDmeInput : public CDmeOperator
{
	DEFINE_ELEMENT( CDmeInput, CDmeOperator );

public:
	virtual bool IsDirty(); // ie needs to operate
};


#endif // DMEINPUT_H