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