fix a whole lot of missing includes

This commit is contained in:
Tropical
2026-03-31 21:23:57 -05:00
parent 4271e562a6
commit 251ec595e8
131 changed files with 305 additions and 31 deletions

View File

@@ -1,6 +1,10 @@
#pragma once
#include <vector>
#include <cassert>
#include <cstdint>
class Biome;
class Arrays {
public:

View File

@@ -1,5 +1,8 @@
#pragma once
#include <vector>
#include <cstdint>
// 4J Stu - Represents Java standard lib abstract
class OutputStream {

View File

@@ -1,6 +1,12 @@
#include <cassert>
#include <cstdint>
#include <vector>
#include "java/File.h"
#include "java/InputOutputStream/FileOutputStream.h"
#include "../../../Minecraft.World/ConsoleHelpers/StringHelpers.h" // 4jcraft TODO
// Creates a file output stream to write to the file represented by the
// specified File object. A new FileDescriptor object is created to represent
// this file connection. First, if there is a security manager, its checkWrite

View File

@@ -1,3 +1,5 @@
#include <cassert>
#include <cmath>
#include <chrono>
#include <cstdint> // for int64_t