using System;
namespace SingularityGroup.HotReload {
///
/// Methods with this attribute will get invoked after a hot reload
///
///
/// The method with this attribute needs to have no parameters.
/// Further more it needs to either be static or and instance method inside a .
/// For the latter case the method of all instances of the will be called.
/// In case the method has a return value it will be ignored.
///
[AttributeUsage(AttributeTargets.Method)]
public class InvokeOnHotReload : Attribute {
}
}