1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 03:28:20 +02:00

Renamed System.Collections.Generic to System.Collections

This commit is contained in:
Brian Fiete 2020-04-29 06:40:03 -07:00
parent 4cb9791845
commit dbd9b32e3f
281 changed files with 368 additions and 341 deletions

View file

@ -6,7 +6,7 @@ using Beefy.theme.dark;
using Beefy.theme;
using System.IO;
using System.Threading;
using System.Collections.Generic;
using System.Collections;
using System.Diagnostics;
using Beefy.events;
using Beefy.sys;

View file

@ -2,7 +2,7 @@
using System.Threading;
using System;
using System.Collections.Generic;
using System.Collections;
using System.Diagnostics;
using System.Net;
using Beefy;

View file

@ -3,7 +3,7 @@ using Beefy;
using Beefy.gfx;
using Beefy.widgets;
using Beefy.geom;
using System.Collections.Generic;
using System.Collections;
using Beefy.utils;
using System.Diagnostics;
using Beefy.theme.dark;

View file

@ -1,6 +1,6 @@
using System.Threading;
using System;
using System.Collections.Generic;
using System.Collections;
using System.Diagnostics;
using Beefy;

View file

@ -1,6 +1,6 @@
using System;
using System.Diagnostics;
using System.Collections.Generic;
using System.Collections;
namespace BeefPerf
{

View file

@ -1,7 +1,7 @@
using Beefy.widgets;
using Beefy.theme.dark;
using Beefy.gfx;
using System.Collections.Generic;
using System.Collections;
using System;
using Beefy.events;
using Beefy;

View file

@ -1,5 +1,5 @@
using System;
using System.Collections.Generic;
using System.Collections;
using System.Text;
using System.Threading.Tasks;
using Beefy;

View file

@ -1,7 +1,7 @@
using Beefy.widgets;
using Beefy.gfx;
using Beefy.theme.dark;
using System.Collections.Generic;
using System.Collections;
using System;
using Beefy.geom;
using System.Diagnostics;

View file

@ -1,7 +1,7 @@
using Beefy.widgets;
using Beefy.theme.dark;
using Beefy.gfx;
using System.Collections.Generic;
using System.Collections;
using System;
using System.Diagnostics;
using Beefy.events;

View file

@ -1,5 +1,5 @@
using System;
using System.Collections.Generic;
using System.Collections;
using System.Reflection;
using System.IO;
using System.Diagnostics;

View file

@ -5,7 +5,7 @@ using System;
using System.IO;
using Beefy.utils;
using System.Threading;
using System.Collections.Generic;
using System.Collections;
using System.Diagnostics;
namespace LogViewer

View file

@ -3,7 +3,7 @@ using Beefy;
using Beefy.gfx;
using Beefy.widgets;
using Beefy.geom;
using System.Collections.Generic;
using System.Collections;
using Beefy.utils;
using System.Diagnostics;
using Beefy.theme.dark;

View file

@ -1,5 +1,5 @@
using System;
using System.Collections.Generic;
using System.Collections;
using System.Text;
using System.IO;
using System.Threading.Tasks;

View file

@ -202,11 +202,23 @@ __declspec(dllexport) void Test2(int aa, int bb, int cc, int dd)
int c = 345;
}
extern "C"
__declspec(dllexport) void Test3(int a, int b)
struct ALLEGRO_COLOR
{
float r, g, b, a;
};
extern "C"
__declspec(dllexport) void Test4(void* ptr, ALLEGRO_COLOR* colorPtr)
{
printf("Color: %f %f %f %f\n", colorPtr->r, colorPtr->g, colorPtr->b, colorPtr->a);
}
extern "C"
__declspec(dllexport) void Test3(void* ptr, ALLEGRO_COLOR color)
{
printf("Color: %f %f %f %f\n", color.r, color.g, color.b, color.a);
Test4(ptr, &color);
//printf("Hey!\n");