fix: make include paths consistent (#1390)

* fix: bad header includes

tests pass

* fix-up more include paths
This commit is contained in:
David Markowitz
2024-01-05 04:33:52 -08:00
committed by GitHub
parent 870b56fe02
commit 2804dc3ec2
27 changed files with 28 additions and 29 deletions

View File

@@ -13,7 +13,7 @@
#include <bcrypt/BCrypt.hpp>
#include <BitStream.h>
#include "BitStream.h"
#include <future>
#include "Game.h"

View File

@@ -1,8 +1,8 @@
#ifndef PACKETUTILS_H
#define PACKETUTILS_H
#include <MessageIdentifiers.h>
#include <BitStream.h>
#include "MessageIdentifiers.h"
#include "BitStream.h"
#include <string>
enum class eConnectionType : uint16_t;

View File

@@ -7,7 +7,7 @@
#include <string>
// RakNet
#include <RakNetTypes.h>
#include "RakNetTypes.h"
class dServer;