cc-haxe/src/kernel/DCEHack.hx

25 lines
599 B
Haxe
Raw Normal View History

2023-05-29 19:50:01 +00:00
package kernel;
@:keep
class DCEHack {
// Dont actually call this
public static function load() {
return [
new bin.Disk(),
new bin.GPS(),
new bin.HelloWorld(),
new bin.KernelLog(),
new bin.LSPS(),
new bin.Net(),
new bin.Redstone(),
new bin.Service(),
new bin.Terminal(),
new bin.Turtle(),
new bin.HelloWorldService(),
2023-06-04 14:28:26 +00:00
new bin.srsc.SiteRessourceController(),
new bin.srsc.CLI(),
2023-06-04 19:47:26 +00:00
new bin.Perf(),
2023-05-29 19:50:01 +00:00
];
}
}