20 lines
465 B
C#
20 lines
465 B
C#
// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved.
|
|
|
|
using System;
|
|
|
|
namespace FlaxEngine
|
|
{
|
|
/// <summary>
|
|
/// Makes a script execute in edit mode.
|
|
/// </summary>
|
|
public sealed class ExecuteInEditModeAttribute : Attribute
|
|
{
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="ExecuteInEditModeAttribute"/> class.
|
|
/// </summary>
|
|
public ExecuteInEditModeAttribute()
|
|
{
|
|
}
|
|
}
|
|
}
|