/
redgpu
/
ezEngine
Обзор
Документация
Войти
/
redgpu
/
ezEngine
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
dev
Code/Engine/Core/Interfaces/RemoteToolingInterface.h
13 строк
438 B
Jan Krassnigg
FileServe tool can now remote compile shaders (#1258)
11 апр 2024, 14:37
Не верифицирован
11 апр 2024, 14:37
e77a042
Код
Авторство
О чём код?
#pragma once class ezRemoteInterface; /// \brief Interface to give access to the FileServe client for additional tooling needs. /// /// For now, this interface just gives access to the ezRemoteInterface that is used to communicate with the FileServe server. /// This allows for maximum flexibility sending and receiving custom messages. class ezRemoteToolingInterface { public: virtual ezRemoteInterface* GetRemoteInterface() = 0; };