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
| package org.discrypto.client; | |
| import javafx.application.Platform; | |
| import javafx.scene.control.ButtonBar; | |
| import javafx.scene.control.ButtonType; | |
| import javafx.scene.control.Dialog; | |
| import lombok.Getter; | |
| import lombok.Setter; | |
| import org.discrypto.client.model.User; | |
| import org.discrypto.client.screens.Screen; |
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
| package org.discrypto.client.screens.main.misc; | |
| import javafx.application.Platform; | |
| import javafx.fxml.FXML; | |
| import javafx.scene.control.*; | |
| import javafx.scene.input.MouseButton; | |
| import org.discrypto.api.ExchangeInfo; | |
| import org.discrypto.client.Client; | |
| import org.discrypto.client.model.User; | |
| import org.discrypto.client.other.InBuffer; |
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
| package org.discrypto.client.screens.main.misc; | |
| import javafx.application.Platform; | |
| import javafx.fxml.FXML; | |
| import javafx.scene.control.*; | |
| import javafx.scene.input.MouseButton; | |
| import org.discrypto.api.ExchangeInfo; | |
| import org.discrypto.client.Client; | |
| import org.discrypto.client.model.User; | |
| import org.discrypto.client.other.InBuffer; |
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
| package org.discrypto.example; | |
| import lombok.Getter; | |
| import org.discrypto.api.model.candle.Candle; | |
| import org.discrypto.api.model.candle.CandleListener; | |
| import org.discrypto.api.model.exchange.SupportedExchange; | |
| import org.discrypto.api.model.strategy.Strategy; | |
| import org.discrypto.api.model.strategy.StrategyInfo; | |
| import org.discrypto.api.model.strategy.StrategyProperty; | |
| import org.discrypto.api.model.strategy.events.StartEvent; |
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
| package org.discrypto.example; | |
| import lombok.Getter; | |
| import org.discrypto.api.model.candle.Candle; | |
| import org.discrypto.api.model.candle.CandleListener; | |
| import org.discrypto.api.model.candle.CandleListenerEvent; | |
| import org.discrypto.api.model.exchange.SupportedExchange; | |
| import org.discrypto.api.model.strategy.Strategy; | |
| import org.discrypto.api.model.strategy.StrategyInfo; | |
| import org.discrypto.api.model.strategy.StrategyProperty; |
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
| package io.archon; | |
| import lombok.Getter; | |
| import org.discrypto.api.model.candle.Candle; | |
| import org.discrypto.api.model.candle.CandleListener; | |
| import org.discrypto.api.model.exchange.SupportedExchange; | |
| import org.discrypto.api.model.indicators.MA; | |
| import org.discrypto.api.model.indicators.RSI; | |
| import org.discrypto.api.model.strategy.Strategy; | |
| import org.discrypto.api.model.strategy.StrategyInfo; |
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
| package io.archon; | |
| import lombok.Getter; | |
| import org.discrypto.api.model.candle.Candle; | |
| import org.discrypto.api.model.candle.CandleListener; | |
| import org.discrypto.api.model.exchange.SupportedExchange; | |
| import org.discrypto.api.model.indicators.MA; | |
| import org.discrypto.api.model.indicators.RSI; | |
| import org.discrypto.api.model.strategy.Strategy; | |
| import org.discrypto.api.model.strategy.StrategyInfo; |
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
| /* | |
| * Copyright (c) 2019-2020 Owain van Brakel <https://github.com/Owain94> | |
| * All rights reserved. | |
| * | |
| * Redistribution and use in source and binary forms, with or without | |
| * modification, are permitted provided that the following conditions are met: | |
| * | |
| * 1. Redistributions of source code must retain the above copyright notice, this | |
| * list of conditions and the following disclaimer. | |
| * 2. Redistributions in binary form must reproduce the above copyright notice, |
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
| package net.runelite.mixins; | |
| import net.runelite.api.mixins.*; | |
| import net.runelite.rs.api.RSClient; | |
| import net.runelite.rs.api.RSTask; | |
| import net.runelite.rs.api.RSTaskHandler; | |
| @Mixin(RSTaskHandler.class) | |
| public abstract class HostOverrideMixin implements RSTaskHandler { |
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
| package io.ruin.model.world.messages.friends.chat; | |
| import io.ruin.model.entity.player.Player; | |
| import io.ruin.model.entity.player.friends.FriendsChat; | |
| import io.ruin.model.world.WorldMessage; | |
| import java.util.HashMap; | |
| import java.util.List; | |
| import java.util.Map; |