Framework.h 404 B

1234567891011121314151617
  1. // Copyright (C) 2009-2017, Panagiotis Christopoulos Charitos and contributors.
  2. // All rights reserved.
  3. // Code licensed under the BSD License.
  4. // http://www.anki3d.org/LICENSE
  5. #pragma once
  6. #include <anki/AnKi.h>
  7. class SampleApp : public anki::App
  8. {
  9. public:
  10. anki::Error init(int argc, char** argv);
  11. anki::Error userMainLoop(anki::Bool& quit) override;
  12. virtual anki::Error sampleExtraInit() = 0;
  13. };