mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-26 19:48:01 +02:00
26 lines
473 B
Beef
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();
|
|
}
|
|
}
|
|
}
|