~ruther/NosSmooth

ref: 213fe53ae3a31d69b20543002b447347cf7893c0 NosSmooth/Extensions/NosSmooth.Extensions.Combat/OperationQueueType.cs -rw-r--r-- 2.1 KiB
213fe53a — Rutherther Merge pull request #81 from Rutherther/feat/pathfinding-mates 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
//
//  OperationQueueType.cs
//
//  Copyright (c) František Boháček. All rights reserved.
//  Licensed under the MIT license. See LICENSE file in the project root for full license information.

namespace NosSmooth.Extensions.Combat;

/// <summary>
/// A type classifying operations into multiple sequential queues.
/// </summary>
public enum OperationQueueType
{
    /// <summary>
    /// A total control of controls is needed (walking, sitting - recovering, using a skill).
    /// </summary>
    TotalControl,

    /// <summary>
    /// An item is being used.
    /// </summary>
    Item,

    /// <summary>
    /// Any operation that should be executed sequentially with other <see cref="Reserved1"/> operations.
    /// </summary>
    Reserved1,

    /// <summary>
    /// Any operation that should be executed sequentially with other <see cref="Reserved2"/> operations.
    /// </summary>
    Reserved2,

    /// <summary>
    /// Any operation that should be executed sequentially with other <see cref="Reserved3"/> operations.
    /// </summary>
    Reserved3,

    /// <summary>
    /// Any operation that should be executed sequentially with other <see cref="Reserved4"/> operations.
    /// </summary>
    Reserved4,

    /// <summary>
    /// Any operation that should be executed sequentially with other <see cref="Reserved5"/> operations.
    /// </summary>
    Reserved5,

    /// <summary>
    /// Any operation that should be executed sequentially with other <see cref="Reserved6"/> operations.
    /// </summary>
    Reserved6,

    /// <summary>
    /// Any operation that should be executed sequentially with other <see cref="Reserved7"/> operations.
    /// </summary>
    Reserved7,

    /// <summary>
    /// Any operation that should be executed sequentially with other <see cref="Reserved8"/> operations.
    /// </summary>
    Reserved8,

    /// <summary>
    /// Any operation that should be executed sequentially with other <see cref="Reserved9"/> operations.
    /// </summary>
    Reserved9,

    /// <summary>
    /// Any operation that should be executed sequentially with other <see cref="Reserved10"/> operations.
    /// </summary>
    Reserved10,
}
Do not follow this link