This commit is contained in:
romkazvo
2023-08-07 19:29:24 +08:00
commit 34d6c5d489
4832 changed files with 1389451 additions and 0 deletions

33
CryCommon/IProcess.h Normal file
View File

@@ -0,0 +1,33 @@
//////////////////////////////////////////////////////////////////////
//
// Crytek Common Source code
//
// File:IProcess.h
// Description: Process common interface
//
// History:
// -September 03,2001:Created by Marco Corbetta
//
//////////////////////////////////////////////////////////////////////
#ifndef IPROCESS_H
#define IPROCESS_H
#if _MSC_VER > 1000
# pragma once
#endif
////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////
struct IProcess
{
virtual bool Init() = 0;
virtual void Update() = 0;
virtual void Draw() = 0;
virtual void ShutDown(bool bEditorMode=false) = 0;
virtual void SetFlags(int flags) = 0;
virtual int GetFlags(void) = 0;
};
#endif