Replace ifdef guards with #pragma once

tl;dr this has potentially significant compilation speed benefits.
This commit is contained in:
2020-08-23 19:14:54 +02:00
parent 1281fdaaf0
commit 651ccba932
11 changed files with 11 additions and 44 deletions

View File

@@ -1,5 +1,4 @@
#ifndef _NPCMANAGER_HPP
#define _NPCMANAGER_HPP
#pragma once
#include "CNProtocol.hpp"
#include "PlayerManager.hpp"
@@ -20,5 +19,3 @@ namespace NPCManager {
void npcWarpManager(CNSocket* sock, CNPacketData* data);
}
#endif