rocketSystemInterface.h 864 B

1234567891011121314151617181920212223242526272829
  1. // Filename: rocketSystemInterface.h
  2. // Created by: rdb (03Nov11)
  3. //
  4. ////////////////////////////////////////////////////////////////////
  5. //
  6. // PANDA 3D SOFTWARE
  7. // Copyright (c) Carnegie Mellon University. All rights reserved.
  8. //
  9. // All use of this software is subject to the terms of the revised BSD
  10. // license. You should have received a copy of this license along
  11. // with this source code in a file named "LICENSE."
  12. //
  13. ////////////////////////////////////////////////////////////////////
  14. #ifndef ROCKET_SYSTEM_INTERFACE_H
  15. #define ROCKET_SYSTEM_INTERFACE_H
  16. #include "config_rocket.h"
  17. #include <Rocket/Core/SystemInterface.h>
  18. #include <Rocket/Core/Log.h>
  19. class RocketSystemInterface : public Rocket::Core::SystemInterface {
  20. public:
  21. float GetElapsedTime();
  22. bool LogMessage(Rocket::Core::Log::Type type, const Rocket::Core::String& message);
  23. };
  24. #endif