mirror of
https://git.neolegacy.dev/neoStudiosLCE/neoLegacy.git
synced 2026-07-17 19:40:45 +00:00
- 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
13 lines
240 B
C++
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);
|
|
};
|