terminal/tools/ColorTool/ColorTool/ISchemeParser.cs
2017-08-28 10:06:45 -07:00

15 lines
291 B
C#

//
// Copyright (C) Microsoft. All rights reserved.
// Licensed under the terms described in the LICENSE file in the root of this project.
//
namespace ColorTool
{
interface ISchemeParser
{
string Name { get; }
uint[] ParseScheme(string schemeName);
}
}