This commit is contained in:
2022-05-18 19:57:23 +03:00
commit 0ad135ca0f
73 changed files with 2282 additions and 0 deletions

33
Ingame/PistonStatus.cs Normal file
View File

@@ -0,0 +1,33 @@
namespace Sandbox.ModAPI.Ingame
{
/// <summary>
/// Describes the current status of the piston.
/// </summary>
public enum PistonStatus
{
/// <summary>
/// The piston velocity is 0 (stationary).
/// </summary>
Stopped,
/// <summary>
/// The piston is being extended (moving).
/// </summary>
Extending,
/// <summary>
/// The piston is in its extended position (stationary).
/// </summary>
Extended,
/// <summary>
/// The piston is being retracted (moving).
/// </summary>
Retracting,
/// <summary>
/// The piston is in its retracted position (stationary).
/// </summary>
Retracted
}
}