1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-26 19:48:01 +02:00
Beef/IDE/src/Targets.bf
2020-05-25 20:46:28 +08:00

26 lines
473 B
Beef

using System;
using System.Collections;
using System.Text;
using System.Threading.Tasks;
namespace IDE
{
public class Targets
{
[CallingConvention(.Stdcall), CLink]
static extern void Targets_Create();
[CallingConvention(.Stdcall), CLink]
static extern void Targets_Delete();
public this()
{
Targets_Create();
}
public ~this()
{
Targets_Delete();
}
}
}