This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <chrono> | |
#include <iostream> | |
#include "react/Domain.h" | |
#include "react/Signal.h" | |
#include "cells.hpp" | |
using namespace std; | |
using namespace std::chrono; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
scriptname DLI_ExampleLib_1 extends DLI_LibBase | |
; LIBRARY INFO ------------------------------------------------------------------------------------ | |
; @override DLI_LibBase | |
string function GetLibraryName() | |
return "Example Library" | |
endFunction | |
; @override DLI_LibBase |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
scriptname Peer extends Quest | |
; debug | |
string property DebugName auto | |
string function Dump() | |
if (Successor) | |
return DebugName + " -> " + Successor.Dump() | |
else |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
scriptname UILIB_Base extends Quest | |
; SCRIPT VERSION ---------------------------------------------------------------------------------- | |
int function GetVersion() | |
return -1 | |
endFunction | |
; CONSTANTS --------------------------------------------------------------------------------------- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
scriptname UILIB_1 extends UILIB_Base | |
; SCRIPT VERSION ---------------------------------------------------------------------------------- | |
int function GetVersion() | |
return 1 | |
endFunction | |
; FUNCTIONS --------------------------------------------------------------------------------------- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import skyui.util.GlobalFunctions; | |
// This is basically an exact copy of Messages.as from the vanilla repository | |
import uilib_2.Messages; | |
class uilib_2.NotificationArea extends MovieClip | |
{ | |
/* CONSTANTS */ | |
public static var UILIB_VERSION: Number = 2; |