Core/ApplicationBase: GetComponent can no longer fail

This commit is contained in:
SirLynix
2023-05-20 21:35:10 +02:00
parent 35c498bf21
commit 580b3c8804
2 changed files with 10 additions and 10 deletions

View File

@@ -36,8 +36,8 @@ namespace Nz
inline void ClearComponents();
template<typename T> T* GetComponent();
template<typename T> const T* GetComponent() const;
template<typename T> T& GetComponent();
template<typename T> const T& GetComponent() const;
int Run();