mirror of
https://github.com/ptitSeb/Serious-Engine
synced 2024-11-22 18:30:27 +01:00
216246cf15
Too many classes definitions in one file. Preparing for separation Menu.cpp
18 lines
264 B
C
18 lines
264 B
C
/* Copyright (c) 2002-2012 Croteam Ltd. All rights reserved. */
|
|
|
|
#ifndef SE_INCL_ARROWDIR_H
|
|
#define SE_INCL_ARROWDIR_H
|
|
#ifdef PRAGMA_ONCE
|
|
#pragma once
|
|
#endif
|
|
|
|
|
|
enum ArrowDir {
|
|
AD_NONE,
|
|
AD_UP,
|
|
AD_DOWN,
|
|
AD_LEFT,
|
|
AD_RIGHT,
|
|
};
|
|
|
|
#endif /* include-once check. */ |