This repository has been archived on 2026-04-30. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Tortuga/server/threading.hpp
T
2013-08-11 20:39:08 +10:00

16 lines
206 B
C++

#ifndef THREADING_HPP_
#define THREADING_HPP_
#include "room.hpp"
#include "SDL/SDL_thread.h"
struct roomHandle {
SDL_Thread* thread = nullptr;
Room* room = nullptr;
};
int roomThread(void*);
#endif