Initial commit

This commit is contained in:
daoge_cmd
2026-03-01 12:16:08 +08:00
parent def8cb4153
commit b691c43c44
19437 changed files with 4363922 additions and 0 deletions

24
Minecraft.Client/Rect2i.h Normal file
View File

@@ -0,0 +1,24 @@
#pragma once
class Rect2i
{
private:
int xPos;
int yPos;
int width;
int height;
public:
Rect2i(int x, int y, int width, int height);
Rect2i *intersect(const Rect2i *other);
int getX() const;
int getY() const;
void setX(int x);
void setY(int y);
int getWidth() const;
int getHeight() const;
void setWidth(int width);
void setHeight(int height);
void setPosition(int x, int y);
};