forked from Aztyu/Editeur-3D
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPointers.h
More file actions
27 lines (21 loc) · 838 Bytes
/
Copy pathPointers.h
File metadata and controls
27 lines (21 loc) · 838 Bytes
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
/*
* File: Pointers.h
* Author: Aztyu
*
* Created on 31 décembre 2014, 09:39
*/
#ifndef POINTERS_H
#define POINTERS_H
#include "Event.h"
class Editor;
class GraphicalInterface;
//! Pointeurs necessaire pour l'acces et le fonctionnement dans le programme entier
struct Pointer{
irr::IrrlichtDevice* device; /**< Pointeur vers le device d'Irrlicht. */
irr::video::IVideoDriver* driver; /**< Pointeur vers le driver d'Irrlicht. */
irr::scene::ISceneManager* scene; /**< Pointeur vers la scene d'Irrlicht. */
irr::scene::ICameraSceneNode* camera; /**< Pointeur vers la camera. */
GraphicalInterface* gui; /**< Pointeur vers l'objet GraphicalInterface. */
Editor* current_editor; /**< Pointeur vers l'Editor actuelle. */
};
#endif /* POINTERS_H */