Capycore Engine  0.1.0
A simple and lightweight game engine written in C++ based on the Unity API architecture.
Loading...
Searching...
No Matches
sdl_navigation_node_strategy.h
Go to the documentation of this file.
1#pragma once
2
3#include <SDL3/SDL.h>
7
17 private:
18 SDL_Renderer& sdl_renderer_;
19
20 public:
21 SdlNavigationNodeStrategy(SDL_Renderer& sdl_renderer);
22 ~SdlNavigationNodeStrategy() override = default;
23 void draw(Component& component, Camera& camera) override;
24};
Camera GameObject class Inherits from GameObject class and represents a camera in the scene....
Definition camera.h:18
Base class for all components that can be attached to GameObjects.
Definition component.h:24
Interface for rendering strategies used by renderable components.
Definition irendering_strategy.h:13
SDL implementation of the navigation node rendering strategy.
Definition sdl_navigation_node_strategy.h:16
~SdlNavigationNodeStrategy() override=default
void draw(Component &component, Camera &camera) override
SdlNavigationNodeStrategy(SDL_Renderer &sdl_renderer)