mirror of
https://github.com/FriendshipIsEpic/FiE-Game.git
synced 2024-11-22 22:07:59 +01:00
16 lines
324 B
C#
16 lines
324 B
C#
|
using System;
|
||
|
|
||
|
namespace Fie.Manager
|
||
|
{
|
||
|
[AttributeUsage(AttributeTargets.Class, AllowMultiple = false, Inherited = true)]
|
||
|
public class FieManagerExists : Attribute
|
||
|
{
|
||
|
public readonly FieManagerExistSceneFlag existFlag;
|
||
|
|
||
|
public FieManagerExists(FieManagerExistSceneFlag initFlags)
|
||
|
{
|
||
|
existFlag = initFlags;
|
||
|
}
|
||
|
}
|
||
|
}
|