/
GeekNerd
/
ServerModelingProject
Обзор
Документация
Войти
/
GeekNerd
/
ServerModelingProject
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
Assets/Scripts/Interfaces/IDotButtonView.cs
15 строк
365 B
Gorney-Alex
Init
30 май 2026, 19:05
30 май 2026, 19:05
3cdcc49
Код
Авторство
О чём код?
using DataClasses; using UnityEngine; using UnityEngine.UI; namespace Interfaces { public interface IDotButtonView { public GameObject OwnerGameObject { get; } void Init(BaseData baseData); void UpdateName(string newName); void UpdatePosition(Vector2 newPosition); public Button GetButton(); } }