Archived
1
Fork 0
This repository has been archived on 2025-04-12. You can view files and clone it, but cannot push or open issues or pull requests.
graph/tools/common/include/context.h

11 lines
148 B
C++

#pragma once
class Renderer;
using EntityID = uint64_t;
struct Context {
Renderer* renderer;
std::vector<EntityID> selectedEntities;
};