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

21
enginecustom/Color.h Normal file
View File

@@ -0,0 +1,21 @@
#pragma once
#include "Color.g.h"
namespace winrt::enginecustom::implementation
{
struct Color : ColorT<Color>
{
Color() = default;
int32_t MyProperty();
void MyProperty(int32_t value);
};
}
namespace winrt::enginecustom::factory_implementation
{
struct Color : ColorT<Color, implementation::Color>
{
};
}