-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCreditos.cpp
More file actions
65 lines (52 loc) · 2.25 KB
/
Creditos.cpp
File metadata and controls
65 lines (52 loc) · 2.25 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/*
Nombre: Creditos.cpp
Autor: Equipo Warning
Fecha: 01 de Junio del 2019
Descripción: Archivo de implementación donde se presenta la función del menú que presenta los créditos
*/
#include <iostream>
#include <cstdlib>
#include <conio.h>
#include <iomanip>
#include "ManipMenu.h"
#include "ManipConsola.h"
using namespace std;
//Función menuCreditos ********************************************************************************************************
void menuCreditos()
{
int tecla;
int moverX, moverY;
ImprimirPalabra(/*Longitud*/60, /*Posición en y*/1, &moverX, &moverY);
gotoxy(moverX, moverY++); cout << " ______ __ _ _ ";
gotoxy(moverX, moverY++); cout << " .' ___ | | ] (_) / |_ ";
gotoxy(moverX, moverY++); cout << "/ .' \\_| _ .--. .---. .--.| | __ `| |-' .--. .--. ";
gotoxy(moverX, moverY++); cout << "| | [ `/'`\\]/ /__\\\\/ /'`\\' | [ | | | / .'`\\ \\( (`\\] ";
gotoxy(moverX, moverY++); cout << "\\ `.___.'\\ | | | \\__.,| \\__/ | | | | |,| \\__. | `'.'. ";
gotoxy(moverX, moverY++); cout << " `.____ .'[___] '.__.' '.__.;__][___]\\__/ '.__.' [\\__) )";
gotoxy(32,10);
cout << "EQUIPO WARNING";
gotoxy(25,11);
cout << "Jos\202 Alberto Leyva Contreras";
gotoxy(25,12);
cout << "Eric Ram\242n Valenzuela Cruz";
gotoxy(25,13);
cout << "Francisco Javier Castro M\240rquez";
gotoxy(30,16);
cout << "UNIVERSIDAD DE SONORA";
gotoxy(25,17);
cout << "Maestra: Irene Rodr\241guez Castillo";
gotoxy(25,18);
cout << "Proyecto: BlackJack";
gotoxy(25,19);
cout << "Materia: Programaci\242n de Computadoras";
ImprimirPalabra(/*Longitud*/29, /*Posición en y*/20, &moverX, &moverY);
gotoxy(moverX, moverY++); cout << " __ __ _ ";
gotoxy(moverX, moverY++); cout << " / \\ \\ / /__| |_ _____ _ _ \\ ";
gotoxy(moverX, moverY++); cout << "( \\ V / _ \\ \\ V / -_) '_| )";
gotoxy(moverX, moverY++); cout << " \\ \\_/\\___/_|\\_/\\___|_| / ";
do{
tecla = getch();
}while(tecla != tecla_Enter);
system("cls");
}
//FIN Función MenuCreditos *******************************************************************************************