update project includes format

This commit is contained in:
MihailRis
2024-08-10 01:37:48 +03:00
parent 6c4fb417c5
commit f43cc93cd2
233 changed files with 1028 additions and 1028 deletions
+2 -2
View File
@@ -2,8 +2,8 @@
#include <algorithm>
#include <world/Level.hpp>
#include <world/World.hpp>
#include "world/Level.hpp"
#include "world/World.hpp"
Inventories::Inventories(Level& level) : level(level) {
}
+1 -1
View File
@@ -5,7 +5,7 @@
#include <string>
#include <unordered_map>
#include <maths/util.hpp>
#include "maths/util.hpp"
#include "Inventory.hpp"
class Level;
+2 -2
View File
@@ -1,7 +1,7 @@
#include "Inventory.hpp"
#include <content/ContentLUT.hpp>
#include <data/dynamic.hpp>
#include "content/ContentLUT.hpp"
#include "data/dynamic.hpp"
Inventory::Inventory(int64_t id, size_t size) : id(id), slots(size) {
}
+2 -2
View File
@@ -4,8 +4,8 @@
#include <memory>
#include <vector>
#include <interfaces/Serializable.hpp>
#include <typedefs.hpp>
#include "interfaces/Serializable.hpp"
#include "typedefs.hpp"
#include "ItemStack.hpp"
namespace dynamic {
+1 -1
View File
@@ -1,6 +1,6 @@
#include "ItemDef.hpp"
#include <util/stringutil.hpp>
#include "util/stringutil.hpp"
ItemDef::ItemDef(const std::string& name) : name(name) {
caption = util::id_to_caption(name);
+1 -1
View File
@@ -4,7 +4,7 @@
#include <glm/glm.hpp>
#include <string>
#include <typedefs.hpp>
#include "typedefs.hpp"
struct item_funcs_set {
bool init : 1;
+1 -1
View File
@@ -1,6 +1,6 @@
#include "ItemStack.hpp"
#include <content/Content.hpp>
#include "content/Content.hpp"
#include "ItemDef.hpp"
ItemStack::ItemStack() : item(ITEM_EMPTY), count(0) {
+2 -2
View File
@@ -1,8 +1,8 @@
#ifndef ITEMS_ITEM_STACK_HPP_
#define ITEMS_ITEM_STACK_HPP_
#include <constants.hpp>
#include <typedefs.hpp>
#include "constants.hpp"
#include "typedefs.hpp"
class ContentIndices;