camera movement & formatting
This commit is contained in:
@@ -1,17 +1,18 @@
|
||||
#pragma once
|
||||
|
||||
#include <cstdint>
|
||||
#include "Level.h"
|
||||
#include <cstdint>
|
||||
|
||||
namespace Game
|
||||
{
|
||||
struct GameInstance
|
||||
{
|
||||
bool IsInitialized = false;
|
||||
uint64_t Size = sizeof(GameInstance);
|
||||
uint32_t FrameCounter = 0;
|
||||
int64_t StartTime = 0;
|
||||
double Now = 0.0;
|
||||
Level GameLevel;
|
||||
};
|
||||
}
|
||||
struct GameInstance
|
||||
{
|
||||
bool IsInitialized = false;
|
||||
uint64_t Size = sizeof(GameInstance);
|
||||
uint32_t FrameCounter = 0;
|
||||
int64_t StartTime = 0;
|
||||
double Now = 0.0;
|
||||
double Delta = 0.0;
|
||||
Level GameLevel;
|
||||
};
|
||||
} // namespace Game
|
||||
|
||||
Reference in New Issue
Block a user