debut triangle

This commit is contained in:
axelpicou
2024-03-20 13:03:56 +01:00
parent 70c19f4619
commit 6bd66dc5d4
11 changed files with 433 additions and 1 deletions

18
enginecustom/Color.cpp Normal file
View File

@@ -0,0 +1,18 @@
#include "pch.h"
#include "Color.h"
#if __has_include("Color.g.cpp")
#include "Color.g.cpp"
#endif
namespace winrt::enginecustom::implementation
{
int32_t Color::MyProperty()
{
throw hresult_not_implemented();
}
void Color::MyProperty(int32_t /*value*/)
{
throw hresult_not_implemented();
}
}