9 lines
225 B
C#
9 lines
225 B
C#
namespace Barotrauma;
|
|
|
|
/// <summary>
|
|
/// Unit type, i.e. type with only one possible value.
|
|
/// Can be used instead of void to form expressions and
|
|
/// fill in generic parameters.
|
|
/// </summary>
|
|
public enum Unit { Value }
|