mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-24 02:55:39 +00:00
14 lines
273 B
C#
14 lines
273 B
C#
namespace Gtk {
|
|
|
|
using System;
|
|
|
|
public static class StyleProviderPriority
|
|
{
|
|
public const uint Fallback = 1;
|
|
public const uint Theme = 200;
|
|
public const uint Settings = 400;
|
|
public const uint Application = 600;
|
|
public const uint User = 800;
|
|
}
|
|
}
|