mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-02-02 16:01:15 +00:00
Updated licensing information.
This commit is contained in:
parent
cba3413059
commit
7bbab20112
|
@ -60,14 +60,14 @@ namespace Examples.Shapes
|
||||||
|
|
||||||
Colors = new int[]
|
Colors = new int[]
|
||||||
{
|
{
|
||||||
Color.Firebrick.ToArgb(),
|
Utilities.ColorToRgba32(Color.DarkRed),
|
||||||
Color.Honeydew.ToArgb(),
|
Utilities.ColorToRgba32(Color.DarkRed),
|
||||||
Color.Moccasin.ToArgb(),
|
Utilities.ColorToRgba32(Color.Gold),
|
||||||
Color.Yellow.ToArgb(),
|
Utilities.ColorToRgba32(Color.Gold),
|
||||||
Color.Crimson.ToArgb(),
|
Utilities.ColorToRgba32(Color.DarkRed),
|
||||||
Color.DarkGoldenrod.ToArgb(),
|
Utilities.ColorToRgba32(Color.DarkRed),
|
||||||
Color.ForestGreen.ToArgb(),
|
Utilities.ColorToRgba32(Color.Gold),
|
||||||
Color.Sienna.ToArgb(),
|
Utilities.ColorToRgba32(Color.Gold),
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,10 @@
|
||||||
using System;
|
#region --- License ---
|
||||||
|
/* Copyright (c) 2006, 2007 Stefanos Apostolopoulos
|
||||||
|
* See license.txt for license info
|
||||||
|
*/
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using OpenTK.Math;
|
using OpenTK.Math;
|
||||||
|
|
Loading…
Reference in a new issue