Holiday System (#3122)
This commit is contained in:
committed by
GitHub
parent
857c65d968
commit
9ee0ec4106
15
Content.Server/Holiday/Interfaces/IHolidayCelebrate.cs
Normal file
15
Content.Server/Holiday/Interfaces/IHolidayCelebrate.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using Robust.Shared.Serialization;
|
||||
|
||||
namespace Content.Server.Holiday.Interfaces
|
||||
{
|
||||
public interface IHolidayCelebrate : IExposeData
|
||||
{
|
||||
void IExposeData.ExposeData(ObjectSerializer serializer) {}
|
||||
|
||||
/// <summary>
|
||||
/// This method is called before a round starts.
|
||||
/// Use it to do any fun festive modifications.
|
||||
/// </summary>
|
||||
void Celebrate(HolidayPrototype holiday);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user