9 lines
211 B
C
9 lines
211 B
C
|
|
#include "../../../include/ground.h"
|
||
|
|
|
||
|
|
GroundValue _GroundNewValueFunction(GroundFunction in) {
|
||
|
|
return (GroundValue) {
|
||
|
|
.as.Function = in,
|
||
|
|
.type = Ground.New.Type(GroundType_Function)
|
||
|
|
};
|
||
|
|
}
|