mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-16 07:14:09 +02:00
29 lines
307 B
Beef
29 lines
307 B
Beef
![]() |
namespace LibB
|
||
|
{
|
||
|
class LibB0
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
|
||
|
extension LibClassA
|
||
|
{
|
||
|
public int32 mB = GetVal(8, "LibB.LibClassA.mB");
|
||
|
|
||
|
public this()
|
||
|
{
|
||
|
PrintF("LibB.LibClassA()\n");
|
||
|
mB += 100;
|
||
|
}
|
||
|
|
||
|
public this(int32 a)
|
||
|
{
|
||
|
PrintF("LibB.LibClassA(int32)\n");
|
||
|
mB += 1000;
|
||
|
}
|
||
|
|
||
|
public int32 LibB_GetB()
|
||
|
{
|
||
|
return mB;
|
||
|
}
|
||
|
}
|