PixelBullet  0.0.1
A C++ game engine
Loading...
Searching...
No Matches
graphics_resource.h
1#pragma once
2
3#include <typeindex>
4
5namespace pixelbullet
6{
7class GraphicsResource
8{
9public:
10 GraphicsResource() = default;
11 virtual ~GraphicsResource() = default;
12
13 [[nodiscard]] virtual std::type_index GetTypeIndex() const = 0;
14};
15} // namespace pixelbullet