baritone/src/api/java/baritone/api/event/events/type/EventState.java

38 lines
1.1 KiB
Java
Raw Normal View History

2018-08-08 03:16:53 +00:00
/*
* This file is part of Baritone.
*
* Baritone is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
2018-08-08 03:16:53 +00:00
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Baritone is distributed in the hope that it will be useful,
2018-08-08 03:16:53 +00:00
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
2018-08-08 03:16:53 +00:00
*
* You should have received a copy of the GNU Lesser General Public License
2018-08-08 03:16:53 +00:00
* along with Baritone. If not, see <https://www.gnu.org/licenses/>.
*/
2018-08-28 00:37:21 +00:00
package baritone.api.event.events.type;
2018-08-02 07:45:15 +00:00
/**
* @author Brady
* @since 8/2/2018 12:34 AM
*/
public enum EventState {
/**
2018-08-03 03:40:27 +00:00
* Indicates that whatever movement the event is being
2018-08-02 07:45:15 +00:00
* dispatched as a result of is about to occur.
*/
PRE,
/**
2018-08-03 03:40:27 +00:00
* Indicates that whatever movement the event is being
2018-09-15 01:29:35 +00:00
* dispatched as a result of has already occurred.
2018-08-02 07:45:15 +00:00
*/
POST
}