mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-27 20:18:01 +02:00
27 lines
441 B
Beef
27 lines
441 B
Beef
![]() |
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Text;
|
||
|
using System.Threading.Tasks;
|
||
|
|
||
|
namespace IDE
|
||
|
{
|
||
|
public class Targets
|
||
|
{
|
||
|
[StdCall, CLink]
|
||
|
static extern void Targets_Create();
|
||
|
|
||
|
[StdCall, CLink]
|
||
|
static extern void Targets_Delete();
|
||
|
|
||
|
public this()
|
||
|
{
|
||
|
Targets_Create();
|
||
|
}
|
||
|
|
||
|
public ~this()
|
||
|
{
|
||
|
Targets_Delete();
|
||
|
}
|
||
|
}
|
||
|
}
|