/
dr.puzo
/
ProjectPractice
Обзор
Документация
Войти
/
dr.puzo
/
ProjectPractice
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/Assets/Scripts/Utilities/UpdateEventArgs.cs
19 строк
444 B
CRYZORE
Файлы проекта перенесены в папку src
12 май 2026, 01:46
12 май 2026, 01:46
b981065
Код
Авторство
О чём код?
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; } } }