Advertisement
Mauriciocaradenepe

libreria de hoy :v

Aug 21st, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. #pragma once
  2. class Unidades_Graficas
  3. {
  4. //siempre se hace las caracteristicas en el private de p.o.o
  5. private://caracteristicas de la programacion orientada a objetos
  6. int x, y,desx,desy,color;
  7. char representacion;
  8. public://comportamiendo
  9. Unidades_Graficas();//nace
  10. void mostrar();
  11. void ocultar();
  12. void mover_x();
  13. void mover_y();
  14. ~Unidades_Graficas();//muere :c
  15. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement