20 lines
391 B
C#
20 lines
391 B
C#
using Fusion;
|
|
|
|
namespace Projectiles
|
|
{
|
|
public interface IContextBehaviour
|
|
{
|
|
SceneContext Context { get; set; }
|
|
}
|
|
|
|
public abstract class ContextBehaviour : NetworkBehaviour, IContextBehaviour
|
|
{
|
|
public SceneContext Context { get; set; }
|
|
}
|
|
|
|
public abstract class ContextSimulationBehaviour : SimulationBehaviour, IContextBehaviour
|
|
{
|
|
public SceneContext Context { get; set; }
|
|
}
|
|
}
|