debut de texture translation

This commit is contained in:
Mamitiana RASOLOJAONA
2024-04-04 10:27:14 +02:00
parent e860992342
commit 5a27827ee2
9 changed files with 640 additions and 1 deletions

21
enginecustom/translate.h Normal file
View File

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