This file contains 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
/** | |
* Types for character / expression rendering by https://github.com/FunctionDJ | |
* | |
* Credit goes to https://github.com/ac2pic and https://github.com/AndrielChaoti | |
* for initial types at https://github.com/CCDirectLink/crosscode-re-docs/blob/master/gui/faces.md | |
*/ | |
type Mapped<T> = { | |
[key: string]: T | |
} |
This file contains 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
type Mapped<T> = { | |
[key: string]: T | |
} | |
export interface CharacterData { | |
face?: Face | string | FaceMap | |
} | |
export interface Face { | |
width: number |
This file contains 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 { ReactElement } from "react"; | |
import { Alert } from "react-bootstrap"; | |
import { ChangeVarNumber_T } from "../../interfaces/actions"; | |
interface Props { | |
data: ChangeVarNumber_T | |
} | |
export const ChangeVarNumber = ({ data }: Props) => { | |
const value = ( |
This file contains 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
type GameAction = | |
"moveDirX" | |
| "aiming" | |
| "charge" | |
| "menuBack" | |
| "menuHotkeyHelp2" | |
| "questCircleLeft" | |
| "dashing" | |
| "guarding" |
This file contains 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
type GameAction = | |
"moveDirX" | |
| "aiming" | |
| "charge" | |
| "menuBack" | |
| "menuHotkeyHelp2" | |
| "questCircleLeft" | |
| "dashing" | |
| "guarding" |
This file contains 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
interface WaitEvent { | |
ignoreSlowDown: boolean | |
time: number | |
type: "WAIT" | |
} | |
interface ShowSideMsgEvent { | |
message: { | |
en_US: string | |
de_DE: string |
This file contains 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
/* global nodecg */ | |
import { faCheck } from "@fortawesome/free-solid-svg-icons"; | |
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; | |
import React, { useState, useEffect } from "react"; | |
import ReactDOM from "react-dom"; | |
import OverlayData from "../shared/OverlayData"; | |
import LoaderOverlay from "./components/LoaderOverlay"; | |
import LogoPicker from "./components/LogoPicker"; | |
import RowLabelInput from "./components/RowLabelInput"; | |
import Socials from "./components/Socials"; |
This file contains 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
<?xml version="1.0" encoding="utf-8"?> | |
<packages> | |
<package id="7zip.install" version="19.0" /> | |
<package id="audacity" version="2.4.2" /> | |
<package id="autohotkey.portable" version="1.1.33.02" /> | |
<package id="ccleaner" version="5.76.8269" /> | |
<package id="chocolatey" version="0.10.15" /> | |
<package id="chocolateygui" version="0.17.3" /> | |
<package id="discord.install" version="0.0.309" /> | |
<package id="epicgameslauncher" version="1.1.298.0" /> |
This file contains 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
{"lastUpload":"2021-06-19T14:00:41.526Z","extensionVersion":"v3.4.3"} |
This file contains 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
// We're given this function | |
x = (y=>y)(y,y=x) | |
// It assignes something to x | |
// y => y is an arrow function with implicit return | |
// implicit return means that the "function body" is just an expression that we return | |
// We can write y => y like this | |
y => { | |
return y; | |
} | |
// So we can turn our arrow function to a classic named function like this: |
NewerOlder