-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
eca14c9
commit 3585277
Showing
4 changed files
with
66 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,15 @@ | ||
#pragma once | ||
|
||
#include <SFML/Graphics.hpp> | ||
|
||
#define TAMANO_INICIAL_VENTANA 1800, 920 | ||
#define FPS 60 | ||
|
||
namespace colores { | ||
namespace barra_progreso { | ||
using sf::Color; | ||
const Color FONDO = {230, 230, 230}; | ||
const Color RELLENO = {255, 140, 0}; // 30, 144, 255 | ||
const Color TEXTO = {0, 0, 0}; | ||
} // namespace barra_progreso | ||
} // namespace colores |