mirror of
https://github.com/TombEngine/TombEngine.git
synced 2025-04-30 16:57:57 +03:00
20 lines
No EOL
326 B
C++
20 lines
No EOL
326 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() const;
|
|
void SetX(int x);
|
|
int GetY() const;
|
|
void SetY(int y);
|
|
int GetZ() const;
|
|
void SetZ(int z);
|
|
}; |