a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
24 lines
314 B
C#
24 lines
314 B
C#
public class Style
|
|
{
|
|
public static Style CurrentStyle
|
|
{
|
|
get { return null; }
|
|
set { }
|
|
}
|
|
|
|
private static bool LoadCurrentStyle ()
|
|
{
|
|
return ((CurrentStyle = Load ()) != null);
|
|
}
|
|
|
|
public static Style Load ()
|
|
{
|
|
return null;
|
|
}
|
|
|
|
public static int Main ()
|
|
{
|
|
return LoadCurrentStyle () ? 1 : 0;
|
|
}
|
|
}
|