space-game001/Environment.h
2025-03-02 07:37:51 +03:00

25 lines
426 B
C++

#pragma once
#include "Math.h"
namespace ZL {
class Environment {
public:
static int windowHeaderHeight;
static int width;
static int height;
static float zoom;
static bool leftPressed;
static bool rightPressed;
static bool upPressed;
static bool downPressed;
static Vector3f cameraShift;
static Vector3f characterPos;
static float violaCurrentIdleFrame;
};
} // namespace ZL