summary refs log tree commit diff
path: root/src/Support.cpp
blob: 2f24e94d08cc810731bde13af804ba90710d0c0c (plain) (blame)
1
2
3
4
5
6
7
8
#include <stdlib.h>

#include "Support.h"

int Random()
{
	return (rand() % 65535) - 32767;
}