// Copyright (c) 2012-2020 Wojciech Figat. All rights reserved.
using System;
namespace FlaxEngine
{
///
/// Makes a script execute in edit mode.
///
public sealed class ExecuteInEditModeAttribute : Attribute
{
///
/// Initializes a new instance of the class.
///
public ExecuteInEditModeAttribute()
{
}
}
}