Files

16 lines
283 B
C#
Raw Permalink Normal View History

2025-10-03 00:02:43 -04:00
using System;
2026-04-17 12:01:50 -04:00
using SLSUtilities.General;
2025-10-03 00:02:43 -04:00
using UnityEngine;
namespace Continentis.MainGame.Rules
{
public class RulesCollectionBase : IPrioritized
{
public int Priority { get; set; }
2025-10-23 00:49:44 -04:00
public virtual void ApplyRules()
{
}
2025-10-03 00:02:43 -04:00
}
}