Skip to content

Latest commit

 

History

History
62 lines (51 loc) · 1.22 KB

README.md

File metadata and controls

62 lines (51 loc) · 1.22 KB

random

A Java library for random

Features

  • Random Picker:

Targets

La idea del Target es asignarle un valor de superficie para que luego el PackTarget, compuesto de Target, lance un 'dart' a la superficie formada por todos los Target que contiene. El Target alcanzado por el 'dart' será el escogido aleatoriamente.

Download

  • Gradle: Add Repository:
allprojects {
	repositories {
		...
		maven { url 'https://jitpack.io' }
	}
}

Add Dependency:

dependencies {
  implementation 'com.github.ByDSA:random:1.0'
}
  • Maven: Add Repository:
<repositories>
	<repository>
		<id>jitpack.io</id>
		<url>https://jitpack.io</url>
	</repository>
</repositories>

Add Dependency:

<dependency>
	<groupId>com.github.ByDSA</groupId>
	<artifactId>random</artifactId>
	<version>1.0</version>
</dependency>

random 1.0 jar download are available from Github project's Releases.

Build Status

Source Code

$ git clone https://github.com/ByDSA/random

or

$ git clone https://gitlab.com/danisales/random