10 lines
141 B
C#
10 lines
141 B
C#
using System;
|
|
using System.Collections;
|
|
using UnityEngine;
|
|
namespace Pools
|
|
{
|
|
public sealed class CoinPool : BasePool<Coin>
|
|
{}
|
|
}
|
|
|