mirror of
https://github.com/kwsch/pkNX.git
synced 2026-03-24 03:04:36 -05:00
12 lines
195 B
C#
12 lines
195 B
C#
using System;
|
|
|
|
namespace pkNX.Randomization
|
|
{
|
|
public abstract class Randomizer
|
|
{
|
|
public abstract void Execute();
|
|
|
|
protected readonly Random Rand = Util.Random;
|
|
}
|
|
}
|