crown.h 438 B

12345678910111213141516171819202122
  1. /*
  2. * Copyright (c) 2012-2015 Daniele Bartolini and individual contributors.
  3. * License: https://github.com/taylor001/crown/blob/master/LICENSE
  4. */
  5. #pragma once
  6. #include "types.h"
  7. #include "filesystem_types.h"
  8. #include "device_options.h"
  9. namespace crown
  10. {
  11. /// Initializes the engine.
  12. bool init(DeviceOptions& opts);
  13. /// Updates all the subsystems.
  14. void update();
  15. /// Shutdowns the engine.
  16. void shutdown();
  17. } // namespace crown