| 12345678910111213141516171819 |
- //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
- //**************** Copyright (c) 2017 Marko Pintera ([email protected]). All rights reserved. **********************//
- #pragma once
- #include "Testing/BsTestSuite.h"
- namespace bs
- {
- class UtilityTestSuite : public TestSuite
- {
- public:
- UtilityTestSuite();
- void startUp() override;
- void shutDown() override;
- private:
- void testOctree();
- };
- }
|