mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-16 07:14:09 +02:00
14 lines
127 B
Beef
14 lines
127 B
Beef
![]() |
namespace System
|
||
|
{
|
||
|
[AlwaysInclude]
|
||
|
struct MethodReference<T>
|
||
|
{
|
||
|
T mVal;
|
||
|
|
||
|
private this(T val)
|
||
|
{
|
||
|
mVal = val;
|
||
|
}
|
||
|
}
|
||
|
}
|