/
dr.puzo
/
ProjectPractice
Обзор
Документация
Войти
/
dr.puzo
/
ProjectPractice
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
Assets/Scripts/Utilities/UpdateEventArgs.cs
19 строк
444 B
CRYZORE
Initial commit of my Unity project
12 май 2026, 00:35
12 май 2026, 00:35
f48c480
Код
Авторство
О чём код?
using System; namespace RogueSharpTutorial.Utilities { public delegate void UpdateEventHandler(object sender, UpdateEventArgs e); public class UpdateEventArgs : EventArgs { /// <summary> /// Gets the time in seconds since the last update. /// </summary> public float Time { get; private set; } public UpdateEventArgs(float time) { this.Time = time; } } }