Capycore Engine  0.1.0
A simple and lightweight game engine written in C++ based on the Unity API architecture.
Loading...
Searching...
No Matches
iEngineService.h
Go to the documentation of this file.
1#pragma once
2#include <concepts> // NOLINT
3
5 public:
6 virtual ~IEngineService() = default;
7};
8
9template <typename T>
10concept EngineService = std::derived_from<T, IEngineService>;
Definition iEngineService.h:4
virtual ~IEngineService()=default
Definition iEngineService.h:10