mirror of
https://github.com/hanetzer/sdraw_mods_cvr.git
synced 2025-09-05 11:29:23 +00:00
New mods
This commit is contained in:
parent
37c4d9f1bb
commit
e910401fbf
66 changed files with 416 additions and 12 deletions
24
ml_lme/vendor/LeapCSharp/MessageSeverity.cs
vendored
Normal file
24
ml_lme/vendor/LeapCSharp/MessageSeverity.cs
vendored
Normal file
|
@ -0,0 +1,24 @@
|
|||
/******************************************************************************
|
||||
* Copyright (C) Ultraleap, Inc. 2011-2021. *
|
||||
* *
|
||||
* Use subject to the terms of the Apache License 2.0 available at *
|
||||
* http://www.apache.org/licenses/LICENSE-2.0, or another agreement *
|
||||
* between Ultraleap and you, your company or other organization. *
|
||||
******************************************************************************/
|
||||
|
||||
namespace Leap
|
||||
{
|
||||
/// <summary>
|
||||
/// Reports whether the message is for
|
||||
/// a severe failure, a recoverable warning, or a status change.
|
||||
/// @since 3.0
|
||||
/// </summary>
|
||||
public enum MessageSeverity
|
||||
{
|
||||
MESSAGE_UNKNOWN = 0,
|
||||
MESSAGE_CRITICAL = 1,
|
||||
MESSAGE_WARNING = 2,
|
||||
/** A verbose, informational message */
|
||||
MESSAGE_INFORMATION = 3
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue