mirror of
https://github.com/TombEngine/TombEngine.git
synced 2025-05-02 09:47:58 +03:00
20 lines
No EOL
308 B
C++
20 lines
No EOL
308 B
C++
#pragma once
|
|
|
|
#include "framework.h"
|
|
|
|
class GameScriptRotation {
|
|
private:
|
|
int x;
|
|
int y;
|
|
int z;
|
|
|
|
public:
|
|
GameScriptRotation(int x, int y, int z);
|
|
|
|
int GetX();
|
|
void SetX(int x);
|
|
int GetY();
|
|
void SetY(int y);
|
|
int GetZ();
|
|
void SetZ(int z);
|
|
}; |