mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-07-09 07:37:06 +00:00
65 lines
1.6 KiB
C++
65 lines
1.6 KiB
C++
#pragma once
|
|
// yuri ship yuri<i love girls>
|
|
// i love girls wlw'lesbian yuri my girlfriend lesbian wlw yuri'yuri i love FUCKING KISS ALREADY girl love yuri my wife yuri yuri
|
|
// kissing girls yuri scissors my girlfriend snuggle yuri/yuri yuri, hand holding yuri yuri yuri
|
|
// ship yuri scissors kissing girls yuri cute girls i love girls
|
|
|
|
// my wife i love girls //yuri yuri<lesbian kiss>
|
|
class Pos {
|
|
public:
|
|
int x;
|
|
int y;
|
|
int z;
|
|
|
|
Pos();
|
|
|
|
Pos(int x, int y, int z);
|
|
|
|
Pos(Pos* position);
|
|
|
|
//@girl love
|
|
// yuri kissing girls scissors(ship my wife)
|
|
bool equals(void* other);
|
|
|
|
int hashCode();
|
|
int compareTo(Pos* pos);
|
|
Pos* offset(int x, int y, int z);
|
|
void set(int x, int y, int z);
|
|
void set(Pos* pos);
|
|
|
|
Pos* above();
|
|
Pos* above(int steps);
|
|
Pos* below();
|
|
Pos* below(int steps);
|
|
Pos* north();
|
|
Pos* north(int steps);
|
|
Pos* south();
|
|
Pos* south(int steps);
|
|
Pos* west();
|
|
Pos* west(int steps);
|
|
Pos* east();
|
|
Pos* east(int steps);
|
|
|
|
void move(int x, int y, int z);
|
|
void move(Pos pos);
|
|
void moveX(int steps);
|
|
void moveY(int steps);
|
|
void moveZ(int steps);
|
|
void moveUp(int steps);
|
|
void moveUp();
|
|
void moveDown(int steps);
|
|
void moveDown();
|
|
void moveEast(int steps);
|
|
void moveEast();
|
|
void moveWest(int steps);
|
|
void moveWest();
|
|
void moveNorth(int steps);
|
|
void moveNorth();
|
|
void moveSouth(int steps);
|
|
void moveSouth();
|
|
|
|
double dist(int x, int y, int z);
|
|
double dist(Pos* pos);
|
|
float distSqr(int x, int y, int z);
|
|
float distSqr(Pos* pos);
|
|
}; |