You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
966 B
C
35 lines
966 B
C
/*
|
|
* Copyright (c) Contributors to the Open 3D Engine Project
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0 OR MIT
|
|
*
|
|
*/
|
|
|
|
|
|
// Description : Process common interface
|
|
|
|
|
|
#ifndef CRYINCLUDE_CRYCOMMON_IPROCESS_H
|
|
#define CRYINCLUDE_CRYCOMMON_IPROCESS_H
|
|
#pragma once
|
|
|
|
|
|
// forward declaration
|
|
struct SRenderingPassInfo;
|
|
////////////////////////////////////////////////////////////////////////////////////////////////
|
|
////////////////////////////////////////////////////////////////////////////////////////////////
|
|
struct IProcess
|
|
{
|
|
// <interfuscator:shuffle>
|
|
virtual ~IProcess(){}
|
|
virtual bool Init() = 0;
|
|
virtual void Update() = 0;
|
|
virtual void RenderWorld(int nRenderFlags, const SRenderingPassInfo& passInfo, const char* szDebugName) = 0;
|
|
virtual void ShutDown() = 0;
|
|
virtual void SetFlags(int flags) = 0;
|
|
virtual int GetFlags(void) = 0;
|
|
// </interfuscator:shuffle>
|
|
};
|
|
|
|
#endif // CRYINCLUDE_CRYCOMMON_IPROCESS_H
|