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

View File

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