mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-25 10:43:35 +00:00
8 lines
134 B
C++
8 lines
134 B
C++
#pragma once
|
|
|
|
class Position {
|
|
public:
|
|
virtual double getX() = 0;
|
|
virtual double getY() = 0;
|
|
virtual double getZ() = 0;
|
|
}; |