From ef99887f781c71f05453d1234bcf67266b333d53 Mon Sep 17 00:00:00 2001 From: mafiesto4 Date: Sun, 2 Sep 2018 12:18:19 +0200 Subject: [PATCH] Make plugins support all platforms by default --- FlaxEngine/Plugins/Plugin.cs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/FlaxEngine/Plugins/Plugin.cs b/FlaxEngine/Plugins/Plugin.cs index 0a3d90df..ed69f11b 100644 --- a/FlaxEngine/Plugins/Plugin.cs +++ b/FlaxEngine/Plugins/Plugin.cs @@ -23,7 +23,12 @@ public abstract class Plugin Name = GetType().Name, Category = "Other", Version = new Version(1, 0), - SupportedPlatforms = new[] { PlatformType.Windows }, + SupportedPlatforms = new[] + { + PlatformType.Windows, + PlatformType.WindowsStore, + PlatformType.XboxOne + }, }; ///