15 lines
249 B
C#
15 lines
249 B
C#
using UnityEngine;
|
|
|
|
namespace Continentis.MainGame
|
|
{
|
|
public class SubmoduleBase<T>
|
|
{
|
|
[HideInInspector]
|
|
public T owner;
|
|
|
|
public SubmoduleBase(T owner)
|
|
{
|
|
this.owner = owner;
|
|
}
|
|
}
|
|
} |