You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openmw-tes3mp/apps/openmw/mwmp/LocalSystem.hpp

24 lines
390 B
C++

#ifndef OPENMW_LOCALSYSTEM_HPP
#define OPENMW_LOCALSYSTEM_HPP
#include <components/openmw-mp/Base/BaseSystem.hpp>
#include <RakNetTypes.h>
namespace mwmp
{
class Networking;
class LocalSystem : public BaseSystem
{
public:
LocalSystem();
virtual ~LocalSystem();
private:
Networking *getNetworking();
};
}
#endif //OPENMW_LOCALSYSTEM_HPP