namespace MCPForUnity.Editor.Services { /// /// Service for platform detection and platform-specific environment access /// public interface IPlatformService { /// /// Checks if the current platform is Windows /// /// True if running on Windows bool IsWindows(); /// /// Gets the SystemRoot environment variable (Windows-specific) /// /// SystemRoot path, or null if not available string GetSystemRoot(); } }