mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-01-21 21:24:46 +00:00
12 lines
273 B
C++
12 lines
273 B
C++
#ifndef MULTI_THREADING_EXAMPLE_H
|
|
#define MULTI_THREADING_EXAMPLE_H
|
|
|
|
enum EnumMultiThreadingExampleTypes
|
|
{
|
|
SINGLE_SIM_THREAD=0,
|
|
};
|
|
|
|
class CommonExampleInterface* MultiThreadingExampleCreateFunc(struct CommonExampleOptions& options);
|
|
|
|
#endif //MULTI_THREADING_EXAMPLE_H
|