mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-09-27 16:00:46 +00:00
chore: format Minecraft.World
This commit is contained in:
@@ -1,13 +1,10 @@
|
||||
#include "../../Platform/stdafx.h"
|
||||
#include "Synth.h"
|
||||
|
||||
doubleArray Synth::create(int width, int height)
|
||||
{
|
||||
doubleArray Synth::create(int width, int height) {
|
||||
doubleArray result = doubleArray(width * height);
|
||||
for (int y = 0; y < height; y++)
|
||||
{
|
||||
for (int x = 0; x < width; x++)
|
||||
{
|
||||
for (int y = 0; y < height; y++) {
|
||||
for (int x = 0; x < width; x++) {
|
||||
result[x + y * width] = getValue(x, y);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user