You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
391 B
C#
20 lines
391 B
C#
4 weeks ago
|
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; }
|
||
|
}
|
||
|
}
|