mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-24 12:35:31 +00:00
This commit is contained in:
parent
e988763807
commit
689707ac7a
1 changed files with 5 additions and 1 deletions
|
|
@ -4,7 +4,7 @@ using Cosmos.IL2CPU.Plugs;
|
||||||
using System.Drawing;
|
using System.Drawing;
|
||||||
|
|
||||||
namespace Cosmos.IL2CPU.IL.CustomImplementations.System.Drawing {
|
namespace Cosmos.IL2CPU.IL.CustomImplementations.System.Drawing {
|
||||||
[Plug(TargetName = "System.Drawing.Color, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
|
[Plug(Target = typeof(Color))]
|
||||||
public static class ColorImpl {
|
public static class ColorImpl {
|
||||||
public static string ToString(ref Color aThis) {
|
public static string ToString(ref Color aThis) {
|
||||||
|
|
||||||
|
|
@ -41,6 +41,10 @@ namespace Cosmos.IL2CPU.IL.CustomImplementations.System.Drawing {
|
||||||
//* */
|
//* */
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static long get_Value(ref Color aThis)
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Loading…
Reference in a new issue