documentation.
This commit is contained in:
@@ -6,12 +6,34 @@ using System;
|
||||
|
||||
namespace RecrownedAthenaeum.UI.Modular
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// Module for UI layout.
|
||||
/// </summary>
|
||||
public class UIModule : IInputListener
|
||||
{
|
||||
/// <summary>
|
||||
/// Bounds of this module.
|
||||
/// </summary>
|
||||
public Rectangle bounds;
|
||||
/// <summary>
|
||||
/// Origin of this module.
|
||||
/// </summary>
|
||||
public Vector2 origin;
|
||||
|
||||
/// <summary>
|
||||
/// The parent of this module. May be null.
|
||||
/// </summary>
|
||||
public UIModuleGroup Parent;
|
||||
|
||||
/// <summary>
|
||||
/// Name of this module. For organizational/referencial purposes mostly.
|
||||
/// </summary>
|
||||
public string Name;
|
||||
|
||||
/// <summary>
|
||||
/// The color tint of this module.
|
||||
/// </summary>
|
||||
public Color color = Color.White;
|
||||
|
||||
/// <summary>
|
||||
|
Reference in New Issue
Block a user