| 123456789101112131415161718192021 |
- // Copyright (C) 2009-2023, Panagiotis Christopoulos Charitos and contributors.
- // All rights reserved.
- // Code licensed under the BSD License.
- // http://www.anki3d.org/LICENSE
- #include <Tests/Framework/Framework.h>
- #include <AnKi/Util/Filesystem.h>
- using namespace anki;
- ANKI_MAIN_FUNCTION(myMain)
- int myMain(int argc, char** argv)
- {
- HeapAllocator<U8> alloc(allocAligned, nullptr);
- int exitcode = getTesterSingleton().run(argc, argv);
- deleteTesterSingleton();
- return exitcode;
- }
|