forked from Da-Teach/Questor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ArmState.cs
30 lines (30 loc) · 910 Bytes
/
ArmState.cs
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
// ------------------------------------------------------------------------------
// <copyright from='2010' to='2015' company='THEHACKERWITHIN.COM'>
// Copyright (c) TheHackerWithin.COM. All Rights Reserved.
//
// Please look in the accompanying license.htm file for the license that
// applies to this source code. (a copy can also be found at:
// http://www.thehackerwithin.com/license.htm)
// </copyright>
// -------------------------------------------------------------------------------
namespace Questor.Modules
{
public enum ArmState
{
Idle,
Begin,
OpenShipHangar,
ActivateCombatShip,
OpenItemHangar,
OpenCorpHangar,
OpenCargo,
OpenDroneBay,
MoveDrones,
MoveItems,
WaitForItems,
Done,
SwitchToSalvageShip,
ActivateSalvageShip,
NotEnoughAmmo,
}
}