-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathVentana.h
34 lines (27 loc) · 907 Bytes
/
Ventana.h
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
27
28
29
30
31
32
33
34
// Ventana.h: interface for the Ventana class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_VENTANA_H__80172ABF_64E4_4C8B_BCD9_E3078C6F1C2F__INCLUDED_)
#define AFX_VENTANA_H__80172ABF_64E4_4C8B_BCD9_E3078C6F1C2F__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "glut.h"
class Ventana {
private:
int ancho, alto;
double m_ancho, m_alto;
bool fscreen;
public:
Ventana(int, int, double, double);
virtual ~Ventana();
int cogerAncho(void) { return ancho; }
int cogerAlto(void) { return alto; }
double cogerAnchoMetros(void) { return m_ancho; }
double cogerAltoMetros(void) { return m_alto; }
bool cogerFullScreen(void) { return fscreen; }
int dibujar(void);
void fullScreen(void);
void inicializar(void);
};
#endif // !defined(AFX_VENTANA_H__80172ABF_64E4_4C8B_BCD9_E3078C6F1C2F__INCLUDED_)