2016-03-31 02:38:57 +02:00
|
|
|
/* Copyright (c) 2002-2012 Croteam Ltd.
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of version 2 of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation
|
|
|
|
|
2016-04-01 00:12:10 +02:00
|
|
|
|
2016-03-31 02:38:57 +02:00
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License along
|
|
|
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */
|
2016-03-11 22:45:21 +01:00
|
|
|
|
|
|
|
#ifndef SE_INCL_ARROWDIR_H
|
|
|
|
#define SE_INCL_ARROWDIR_H
|
|
|
|
#ifdef PRAGMA_ONCE
|
|
|
|
#pragma once
|
|
|
|
#endif
|
|
|
|
|
2016-03-12 16:25:48 +01:00
|
|
|
|
2016-03-11 22:45:21 +01:00
|
|
|
enum ArrowDir {
|
2016-03-31 21:43:28 +02:00
|
|
|
AD_NONE,
|
|
|
|
AD_UP,
|
|
|
|
AD_DOWN,
|
|
|
|
AD_LEFT,
|
|
|
|
AD_RIGHT,
|
2016-03-11 22:45:21 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* include-once check. */
|