17 lines
401 B
C
Raw Normal View History

2021-09-05 14:34:01 +08:00
/* ******************************** */
/* Warning! Don't modify this file! */
/* ******************************** */
#include "MyRoot.h"
#include "BaseObj.h"
#include "LED.h"
#include <stdio.h>
#include <stdlib.h>
#include "BaseObj.h"
PikaObj *New_MyRoot(Args *args){
PikaObj *self = New_BaseObj(args);
obj_import(self, "LED", New_LED);
obj_newObj(self, "led", "LED");
return self;
}