Files
neoLegacy/Minecraft.World/IglooFeature.h
Tranqlmao a4c746bee4 TU43 Structures, bug fixes & minor changes
- Elytra flight, damage, kinetic energy, pretty much any bug someone reported, paper doll, etc.
- Fossil & Igloo generation
- Texture interpolation
- Iggy mouse fix for world settings
- Neo branding on main screen
- Release build txt logger
- Debug mode spectator
- Several server fixes
- Flowerpot fixes
- Several more changes made in TU43
2026-07-11 19:30:16 -04:00

13 lines
240 B
C++

#pragma once
#include "Feature.h"
class IglooFeature : public Feature
{
public:
bool place(Level *level, Random *random, int x, int y, int z) override;
private:
void placeBasement(Level *level, Random *random, int x, int y, int z);
};