a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
31 lines
327 B
C#
31 lines
327 B
C#
struct Color
|
|
{
|
|
public static Color From (int i)
|
|
{
|
|
return new Color ();
|
|
}
|
|
|
|
public int ToArgb ()
|
|
{
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
class C
|
|
{
|
|
public Color Color {
|
|
get {
|
|
return new Color();
|
|
}
|
|
}
|
|
|
|
void ResetCustomColors ()
|
|
{
|
|
int default_color = Color.From(0).ToArgb ();
|
|
}
|
|
|
|
public static void Main ()
|
|
{
|
|
}
|
|
}
|