// Copyright (C) 2009-2017, Panagiotis Christopoulos Charitos and contributors. // All rights reserved. // Code licensed under the BSD License. // http://www.anki3d.org/LICENSE #pragma once #include class SampleApp : public anki::App { public: anki::Error init(int argc, char** argv); anki::Error userMainLoop(anki::Bool& quit) override; virtual anki::Error sampleExtraInit() = 0; };