﻿using System.Collections.Generic;
using UnityEngine;

public abstract class APlayerList : ScriptableObject
{
	public abstract void RegisterPlayers(PlayerBuilder builder);
}