unifork.old/include/utils/thread.hpp
2019-10-31 03:23:05 +01:00

12 lines
No EOL
173 B
C++

#ifndef THREAD_HPP
#define THREAD_HPP
#include <3ds.h>
#include <vector>
namespace Threads {
void create(ThreadFunc entrypoint);
void destroy(void);
}
#endif