Files
Seele/test/Engine/EngineTest.h
T

23 lines
376 B
C++
Raw Normal View History

2021-03-31 12:18:16 +02:00
#pragma once
#include "Fibers/JobQueue.h"
namespace Seele
{
struct GlobalFixture
{
GlobalFixture()
{
}
~GlobalFixture()
{
}
void setup()
{
2021-04-01 16:40:14 +02:00
//Fibers::JobQueue::initJobQueues();
2021-03-31 12:18:16 +02:00
}
void teardown()
{
2021-04-01 16:40:14 +02:00
//Fibers::JobQueue::cleanupJobQueues();
2021-03-31 12:18:16 +02:00
}
};
};