1
0

Implement RGBREAD

This commit is contained in:
otya128
2016-12-27 15:15:49 +09:00
parent caa2895e37
commit ab86a9fb4e
2 changed files with 10 additions and 1 deletions

View File

@@ -737,6 +737,15 @@ class BuiltinFunction
}
return PetitComputer.RGB(cast(ubyte)R, cast(ubyte)G, cast(ubyte)B);
}
static pure nothrow void RGBREAD(int color, out int R, out int G, out int B)
{
int _;
PetitComputer.RGBRead(color, R, G, B, _);
}
static pure nothrow void RGBREAD(int color, out int A, out int R, out int G, out int B)
{
PetitComputer.RGBRead(color, R, G, B, A);
}
static int RND(int max)
{
import std.random;