mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-05-24 08:56:29 +00:00
chore: format Minecraft.Client
This commit is contained in:
@@ -2,10 +2,9 @@
|
||||
#include "User.h"
|
||||
#include "../../Minecraft.World/Headers/net.minecraft.world.level.tile.h"
|
||||
|
||||
std::vector<Tile *> User::allowedTiles;
|
||||
std::vector<Tile*> User::allowedTiles;
|
||||
|
||||
void User::staticCtor()
|
||||
{
|
||||
void User::staticCtor() {
|
||||
allowedTiles.push_back(Tile::rock);
|
||||
allowedTiles.push_back(Tile::stoneBrick);
|
||||
allowedTiles.push_back(Tile::redBrick);
|
||||
@@ -38,8 +37,7 @@ void User::staticCtor()
|
||||
allowedTiles.push_back(Tile::obsidian);
|
||||
}
|
||||
|
||||
User::User(const std::wstring& name, const std::wstring& sessionId)
|
||||
{
|
||||
User::User(const std::wstring& name, const std::wstring& sessionId) {
|
||||
this->name = name;
|
||||
this->sessionId = sessionId;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user