No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 
 
 
 

50 líneas
806 B

  1. //
  2. // Lol Engine
  3. //
  4. // Copyright © 2010—2019 Sam Hocevar <sam@hocevar.net>
  5. //
  6. // Lol Engine is free software. It comes without any warranty, to
  7. // the extent permitted by applicable law. You can redistribute it
  8. // and/or modify it under the terms of the Do What the Fuck You Want
  9. // to Public License, Version 2, as published by the WTFPL Task Force.
  10. // See http://www.wtfpl.net/ for more details.
  11. //
  12. #include <lol/engine-internal.h>
  13. #include <cstdlib>
  14. #include <cstdint>
  15. #include <functional>
  16. namespace lol
  17. {
  18. //auto p = tickable::create<tickable>();
  19. tickable::tickable()
  20. {
  21. }
  22. tickable::~tickable()
  23. {
  24. }
  25. void tickable::init()
  26. {
  27. }
  28. void tickable::fini()
  29. {
  30. }
  31. void tickable::tick_game(float seconds)
  32. {
  33. }
  34. void tickable::tick_draw(float seconds, class Scene &scene)
  35. {
  36. }
  37. } /* namespace lol */