normalize includes: world

This commit is contained in:
brainiac
2025-12-18 00:45:20 -08:00
parent e2e1f98cee
commit 5f3d9ba39a
84 changed files with 712 additions and 795 deletions
+6 -9
View File
@@ -1,13 +1,12 @@
#ifndef ADVENTURE_H
#define ADVENTURE_H
#pragma once
#include "../common/global_define.h"
#include "../common/types.h"
#include "../common/timer.h"
#include "adventure_template.h"
#include "common/timer.h"
#include "common/types.h"
#include "world/adventure_template.h"
#include <cstdlib>
#include <list>
#include <string>
#include <stdlib.h>
enum AdventureStatus
{
@@ -97,5 +96,3 @@ protected:
Timer *current_timer;
int instance_id;
};
#endif