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.
RizzeProjectile/Assets/Scripts/Scene/ContextBehaviour.cs

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; }
}
}