first commit

This commit is contained in:
murdle
2026-03-01 02:38:58 +02:00
commit 19250b9db4
19111 changed files with 4358159 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
#pragma once
#include "Tile.h"
class SnowTile : public Tile
{
friend class Tile;
protected:
SnowTile(int id);
public:
int getResource(int data, Random *random, int playerBonusLevel);
int getResourceCount(Random *random);
void tick(Level *level, int x, int y, int z, Random *random);
// 4J Added so we can check before we try to add a tile to the tick list if it's actually going to do seomthing
virtual bool shouldTileTick(Level *level, int x,int y,int z);
};