Skip to content
This repository was archived by the owner on Dec 24, 2020. It is now read-only.

Commit

Permalink
Make plugins support all platforms by default
Browse files Browse the repository at this point in the history
  • Loading branch information
mafiesto4 committed Sep 2, 2018
1 parent 8da6893 commit ef99887
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion FlaxEngine/Plugins/Plugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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
},
};

/// <summary>
Expand Down

0 comments on commit ef99887

Please sign in to comment.