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
using System; | |
using System.Collections.Generic; | |
using System.Threading.Tasks; | |
namespace YourNamespace.Redis | |
{ | |
/// <summary> | |
/// Interface for Redis queue operations | |
/// </summary> | |
public interface IRedisQueue<T> |
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
local turnList = {} | |
function onLoad(save_state) | |
print("Kohbo's Lancer Tools Added") | |
startLuaCoroutine(self, "addUIElements") | |
end | |
--This toggles showing or hiding the roll buttons | |
function toggleRollerButtons() |
This file has been truncated, but you can view the full file.
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
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
/* | |
* Reporting application to parse PK notices | |
* Written By: Juan Menendez | |
*/ | |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
using System.Runtime.InteropServices; |
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
public class Hydrogen implements Runnable{ | |
ReactionArea buff; | |
public Hydrogen(ReactionArea buff){ | |
this.buff = buff; | |
} | |
public void run(){ | |
for(int i = 0; i < 20; i++){ | |
try{ |
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 java.util.ArrayList; | |
import java.util.Iterator; | |
public class Army { | |
ArrayList<Regiment> army; | |
Army(){ | |
army = new ArrayList<Regiment>(20); | |
} | |