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:
parent
4cb9791845
commit
dbd9b32e3f
281 changed files with 368 additions and 341 deletions
|
@ -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;
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
using System.Threading;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Collections;
|
||||
using System.Diagnostics;
|
||||
using System.Net;
|
||||
using Beefy;
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
using System.Threading;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Collections;
|
||||
using System.Diagnostics;
|
||||
using Beefy;
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
using System;
|
||||
using System.Diagnostics;
|
||||
using System.Collections.Generic;
|
||||
using System.Collections;
|
||||
|
||||
namespace BeefPerf
|
||||
{
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Collections;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using Beefy;
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Collections;
|
||||
using System.Reflection;
|
||||
using System.IO;
|
||||
using System.Diagnostics;
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Collections;
|
||||
using System.Text;
|
||||
using System.IO;
|
||||
using System.Threading.Tasks;
|
||||
|
|
|
@ -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");
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue