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 seronis.reddit.prompts.dice111; | |
import seronis.reddit.Main; | |
import seronis.reddit.util.DieNumeric; | |
import java.util.ArrayList; | |
/** | |
* Created by seronis on 11/26/14. | |
*/ |
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 seronis.reddit.prompts; | |
import seronis.reddit.Main; | |
import seronis.reddit.util.DieNumeric; | |
/** | |
* Created by seronis on 11/26/14. | |
*/ | |
public class Dice111 extends Main { | |
boolean finished; |
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 <stdio.h> | |
#include <errno.h> | |
#include <stdlib.h> | |
#include <unistd.h> | |
#include <sys/types.h> | |
#include <sys/socket.h> | |
#include <netinet/in.h> | |
#include <arpa/inet.h> | |
#include <netdb.h> |
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 "myInnerClass.h" | |
myInnerClass::myInnerClass( int _val1, int _val2 ) | |
{ | |
val1 = _val1; | |
val2 = _val2; | |
} | |
myInnerClass::~myInnerClass() | |
{ |
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 com.seronis.reddit.dicebag; | |
import java.util.Random; | |
public abstract class Die { | |
protected int value; | |
protected int sides; | |
protected boolean froze; | |
protected Random rand = new Random(); |
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
CC = g++ | |
EXE = game | |
C_FLAGS = -Wall -std=c++11 | |
L_FLAGS = -lcrypt -lz | |
# Source Files | |
SRC_FILES := $(wildcard *.cpp) | |
# Directories | |
OBJ_DIR_D = ../obj/Debug |
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 seronis.testing; | |
import java.awt.BorderLayout; | |
import java.awt.Dimension; | |
import java.awt.Toolkit; | |
import java.awt.event.ActionEvent; | |
import java.awt.event.ActionListener; | |
import java.awt.event.WindowEvent; | |
import java.awt.event.WindowListener; | |
import java.io.IOException; |
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 seronis.util; | |
import java.awt.AWTEvent; | |
import java.awt.Component; | |
import java.awt.EventQueue; | |
import java.awt.Toolkit; | |
import java.awt.event.AWTEventListener; | |
import java.awt.event.ActionEvent; | |
import java.awt.event.ActionListener; | |
import java.awt.event.KeyEvent; |
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
class bldVals { | |
float gcap; | |
float pcap; | |
float city; | |
float farm; | |
float metl; | |
float elec; | |
float advp; | |
float yard; |
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
AlertMsgType@[] alertTypes; | |
class AlertMsgType { | |
string@ name; | |
string@ genMsg; | |
string@ badMsg; | |
AlertEntry@[] list; | |
int spamLimit; //max msgs to queue before grouping | |
float spamDelay; //time between messages | |
float lastMsg; |
NewerOlder