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.
33 lines
698 B
C++
33 lines
698 B
C++
/*
|
|
* Copyright (c) Contributors to the Open 3D Engine Project
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0 OR MIT
|
|
*
|
|
*/
|
|
|
|
|
|
#ifndef CRYINCLUDE_PERFORCEPLUGIN_PERFORCEPLUGIN_H
|
|
#define CRYINCLUDE_PERFORCEPLUGIN_PERFORCEPLUGIN_H
|
|
#pragma once
|
|
|
|
|
|
#include <Include/IPlugin.h>
|
|
|
|
class CPerforcePlugin
|
|
: public IPlugin
|
|
{
|
|
public:
|
|
void Release();
|
|
void ShowAbout();
|
|
const char* GetPluginGUID();
|
|
DWORD GetPluginVersion();
|
|
const char* GetPluginName();
|
|
bool CanExitNow();
|
|
void Serialize(FILE* hFile, bool bIsStoring);
|
|
void ResetContent();
|
|
bool CreateUIElements();
|
|
void OnEditorNotify(EEditorNotifyEvent aEventId);
|
|
};
|
|
|
|
#endif // CRYINCLUDE_PERFORCEPLUGIN_PERFORCEPLUGIN_H
|