/
SN1054NGC
/
DayZ_Projects_cpp
Обзор
Документация
Войти
/
SN1054NGC
/
DayZ_Projects_cpp
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
main
scripts/4_world/classes/remoteplayerdebug/remoteplayermeta.c
31 строка
471 B
SN1054NGC
Initial DayZ mod project commit
26 ноя 2025, 01:03
26 ноя 2025, 01:03
fddb039
Код
Авторство
О чём код?
class RemotePlayerMeta { eRemoteDebugType m_DebugType; PlayerBase m_Player; void RemotePlayerMeta(PlayerBase player, eRemoteDebugType type ) { m_Player = player; m_DebugType = type; } void SetDebugType(eRemoteDebugType type) { m_DebugType = type; } eRemoteDebugType GetDebugType(eRemoteDebugType type) { return m_DebugType; } void SetPlayer(PlayerBase player) { m_Player = player; } PlayerBase GetPlayer() { return m_Player; } }