/*
//  nlRandom.h
//
//  Created by Daisuke Nogami on 9/30/05.
//  Copyright 2005 Daisuke Nogami [null-null.net]. Some rights reserved.
*/

class nlRandom{

private:
	int* randsrc;
	int counter;

public:
	nlRandom();
	~nlRandom();

	double rand();

	void load();
};
