mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-14 04:57:15 +00:00
docs: update XML comments for Essentials Core
This commit is contained in:
parent
0764685c51
commit
f88bb13367
260 changed files with 7018 additions and 1318 deletions
|
|
@ -15,10 +15,29 @@ namespace PepperDash.Essentials.Core
|
|||
/// </summary>
|
||||
public class ActionIncrementer
|
||||
{
|
||||
/// <summary>
|
||||
/// The amount to change the value by each increment
|
||||
/// </summary>
|
||||
public int ChangeAmount { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// The maximum value for the incrementer
|
||||
/// </summary>
|
||||
public int MaxValue { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// The minimum value for the incrementer
|
||||
/// </summary>
|
||||
public int MinValue { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// The delay before repeating starts
|
||||
/// </summary>
|
||||
public uint RepeatDelay { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// The time between repeats
|
||||
/// </summary>
|
||||
public uint RepeatTime { get; set; }
|
||||
|
||||
Action<int> SetAction;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue