diff --git a/ProjectLighthouse/Types/Users/Platform.cs b/ProjectLighthouse/Types/Users/Platform.cs index d30ba159..3e5811b0 100644 --- a/ProjectLighthouse/Types/Users/Platform.cs +++ b/ProjectLighthouse/Types/Users/Platform.cs @@ -1,5 +1,14 @@ namespace LBPUnion.ProjectLighthouse.Types.Users; +public static class PlatformExtensions +{ + + public static bool IsPSN(this Platform platform) + { + return platform == Platform.PS3 || platform == Platform.PSP || platform == Platform.Vita; + } +} + public enum Platform { PS3 = 0,