diff --git a/enginecustom/enginecustom.vcxproj b/enginecustom/enginecustom.vcxproj
index 1da4132..577b180 100644
--- a/enginecustom/enginecustom.vcxproj
+++ b/enginecustom/enginecustom.vcxproj
@@ -1,6 +1,5 @@
-
Debug
@@ -58,10 +57,6 @@
-
- translate.vs
- Code
-
@@ -103,10 +98,6 @@
-
- translate.vs
- Code
-
@@ -286,14 +277,4 @@
-
-
-
-
-
- Ce projet fait référence à des packages NuGet qui sont manquants sur cet ordinateur. Utilisez l'option de restauration des packages NuGet pour les télécharger. Pour plus d'informations, consultez http://go.microsoft.com/fwlink/?LinkID=322105. Le fichier manquant est : {0}.
-
-
-
-
\ No newline at end of file
diff --git a/enginecustom/enginecustom.vcxproj.filters b/enginecustom/enginecustom.vcxproj.filters
index cec0456..0a91240 100644
--- a/enginecustom/enginecustom.vcxproj.filters
+++ b/enginecustom/enginecustom.vcxproj.filters
@@ -391,4 +391,12 @@
assets
+
+
+ shader
+
+
+ shader
+
+
\ No newline at end of file
diff --git a/enginecustom/translate.cpp b/enginecustom/translate.cpp
deleted file mode 100644
index 7bf765c..0000000
--- a/enginecustom/translate.cpp
+++ /dev/null
@@ -1,18 +0,0 @@
-#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();
- }
-}
diff --git a/enginecustom/translate.h b/enginecustom/translate.h
deleted file mode 100644
index 5e8a544..0000000
--- a/enginecustom/translate.h
+++ /dev/null
@@ -1,21 +0,0 @@
-#pragma once
-
-#include "Translate.g.h"
-
-namespace winrt::enginecustom::implementation
-{
- struct Translate : TranslateT
- {
- Translate() = default;
-
- int32_t MyProperty();
- void MyProperty(int32_t value);
- };
-}
-
-namespace winrt::enginecustom::factory_implementation
-{
- struct Translate : TranslateT
- {
- };
-}