14 lines
221 B
C#
14 lines
221 B
C#
using UnityEngine;
|
|
|
|
namespace Cielonos.MainGame
|
|
{
|
|
public class SubmoduleBase<T>
|
|
{
|
|
public readonly T owner;
|
|
|
|
public SubmoduleBase(T owner)
|
|
{
|
|
this.owner = owner;
|
|
}
|
|
}
|
|
} |