don't drink and code
This commit is contained in:
parent
9f6bdf6851
commit
4ae6fb4bc7
@ -7,7 +7,7 @@ General purpose "operation system" for [ComputerCraft](https://tweaked.cc/) buil
|
|||||||
- Hardware abstraction
|
- Hardware abstraction
|
||||||
- Virtual screens to switch between multiple GUI apps
|
- Virtual screens to switch between multiple GUI apps
|
||||||
- Reactive UI framework
|
- Reactive UI framework
|
||||||
- Solid base to easily applications
|
- Solid base to easily add applications
|
||||||
|
|
||||||
# Building
|
# Building
|
||||||
|
|
||||||
|
@ -5,7 +5,7 @@ import cc.OS;
|
|||||||
using tink.CoreApi;
|
using tink.CoreApi;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Wrapper class for using timer.
|
Wrapper class for using timers.
|
||||||
**/
|
**/
|
||||||
class Timer {
|
class Timer {
|
||||||
private final timerID:Int;
|
private final timerID:Int;
|
||||||
|
@ -3,7 +3,7 @@ package kernel.http;
|
|||||||
using tink.CoreApi;
|
using tink.CoreApi;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Wrapper for the native
|
Wrapper for the native HTTP request function.
|
||||||
**/
|
**/
|
||||||
class Http {
|
class Http {
|
||||||
public static function request(url:String,?body:String,?options: String):Future<Outcome<HTTPResponse,HTTPFailure>> {
|
public static function request(url:String,?body:String,?options: String):Future<Outcome<HTTPResponse,HTTPFailure>> {
|
||||||
|
@ -8,7 +8,7 @@ import lib.Debug;
|
|||||||
using tink.CoreApi;
|
using tink.CoreApi;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Log messages to specified output.
|
Central logging system.
|
||||||
**/
|
**/
|
||||||
class Log {
|
class Log {
|
||||||
public static var instance:Log;
|
public static var instance:Log;
|
||||||
|
@ -4,7 +4,7 @@ import kernel.log.Log;
|
|||||||
using tink.CoreApi;
|
using tink.CoreApi;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Virtual network interface that handle
|
Virtual network interface that handles packages to the same id as the sender.
|
||||||
**/
|
**/
|
||||||
class Loopback implements INetworkInterface {
|
class Loopback implements INetworkInterface {
|
||||||
public static final instance:Loopback = new Loopback();
|
public static final instance:Loopback = new Loopback();
|
||||||
|
Loading…
Reference in New Issue
Block a user