Cleanup un peu TOC

This commit is contained in:
MarcEricMartel 2023-09-30 14:54:39 -04:00
parent 033365c961
commit ef8a050545
6 changed files with 8 additions and 2 deletions

View File

@ -1,5 +1,6 @@
#ifndef BULLET_H__
#define BULLET_H__
#include "define.h"
#include "vector3.h"

View File

@ -1,5 +1,6 @@
#ifndef CHUNK_H__
#define CHUNK_H__
#include "define.h"
#include "array2d.h"
#include "array3d.h"

View File

@ -1,5 +1,6 @@
#ifndef NETPROTOCOL_H__
#define NETPROTOCOL_H__
#include "define.h"
#include <string>
#include "vector3.h"

View File

@ -1,5 +1,6 @@
#ifndef CLI_PLAYER_H__
#define CLI_PLAYER_H__
#ifndef PLAYER_H__
#define PLAYER_H__
#include <cmath>
#include "transformation.h"
#include "vector3.h"

View File

@ -1,5 +1,6 @@
#ifndef WORLD_H__
#define WORLD_H__
#include <fstream>
#include <string>
#include <vector>

View File

@ -1,5 +1,6 @@
#ifndef CONNECTION_H__
#define CONNECTION_H__
#include <deque>
#include <map>
#include "../SQCSim-common/player.h"