docs: added documentation to draw & update interfaces

This commit is contained in:
2025-05-24 13:38:39 +03:00
parent 877a004a13
commit 832514ba7d
6 changed files with 36 additions and 0 deletions

View File

@@ -1,6 +1,12 @@
namespace Syntriax.Engine.Core;
/// <summary>
/// Represents a <see cref="IBehaviour"/> to be notified when the draw phase of the <see cref="IUniverse"/> occurs.
/// </summary>
public interface IDraw : IBehaviour
{
/// <summary>
/// Calls draw logic for the <see cref="IBehaviour"/> to be displayed visually.
/// </summary>
void Draw();
}