first commit
This commit is contained in:
12
Minecraft.World/Coord.h
Normal file
12
Minecraft.World/Coord.h
Normal file
@@ -0,0 +1,12 @@
|
||||
#pragma once
|
||||
|
||||
class Coord
|
||||
{
|
||||
public:
|
||||
const int x, y, z;
|
||||
|
||||
public:
|
||||
Coord(int x, int y, int z) : x( x ), y( y ), z( z )
|
||||
{
|
||||
};
|
||||
};
|
||||
Reference in New Issue
Block a user