mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-16 15:24:10 +02:00
24 lines
236 B
Beef
24 lines
236 B
Beef
![]() |
namespace LibC
|
||
|
{
|
||
|
class LibC0
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
|
||
|
extension LibClassA
|
||
|
{
|
||
|
public int32 mB = GetVal(13, "LibC.LibClassA.mB");
|
||
|
|
||
|
public this(int8 i8)
|
||
|
{
|
||
|
PrintF("LibC.LibClassA()\n");
|
||
|
mB += 30000;
|
||
|
}
|
||
|
|
||
|
public int LibC_GetB()
|
||
|
{
|
||
|
return mB;
|
||
|
}
|
||
|
}
|
||
|
|