]> git.lizzy.rs Git - irrlicht.git/blob - source/Irrlicht/S2DVertex.h
Revert "Fix: Listbox was sometimes sending EGET_LISTBOX_SELECTED_AGAIN instead of...
[irrlicht.git] / source / Irrlicht / S2DVertex.h
1 // Copyright (C) 2002-2012 Nikolaus Gebhardt\r
2 // This file is part of the "Irrlicht Engine".\r
3 // For conditions of distribution and use, see copyright notice in irrlicht.h\r
4 \r
5 #ifndef __S_K_2D_VERTEX_H_INCLUDED__\r
6 #define __S_K_2D_VERTEX_H_INCLUDED__\r
7 \r
8 #include "vector2d.h"\r
9 \r
10 typedef signed short TZBufferType;\r
11 \r
12 namespace irr\r
13 {\r
14 namespace video\r
15 {\r
16 \r
17         struct S2DVertex\r
18         {\r
19                 core::vector2d<s32> Pos;        // position\r
20                 core::vector2d<s32> TCoords;    // texture coordinates\r
21                 TZBufferType ZValue;            // zvalue\r
22                 u16 Color;\r
23         };\r
24 \r
25 \r
26 } // end namespace video\r
27 } // end namespace irr\r
28 \r
29 #endif\r
30 \r