Implement GTRI
This commit is contained in:
@@ -684,6 +684,14 @@ class BuiltinFunction
|
||||
{
|
||||
GCOPY(p, p.graphic.useGRP, x, y, x2, y2, x3, y3, cpmode);
|
||||
}
|
||||
static void GTRI(PetitComputer p, int x1, int y1, int x2, int y2, int x3, int y3, int color)
|
||||
{
|
||||
p.graphic.gtri(x1, y1, x2, y2, x3, y3, color);
|
||||
}
|
||||
static void GTRI(PetitComputer p, int x1, int y1, int x2, int y2, int x3, int y3)
|
||||
{
|
||||
p.graphic.gtri(x1, y1, x2, y2, x3, y3, p.graphic.gcolor);
|
||||
}
|
||||
static void BGMPLAY(PetitComputer p, Value numberOrMML)
|
||||
{
|
||||
if (numberOrMML.isNumber)
|
||||
|
||||
Reference in New Issue
Block a user