mirror of
https://github.com/FriendshipIsEpic/FiE-Game.git
synced 2024-12-02 01:47:58 +01:00
14 lines
174 B
C#
14 lines
174 B
C#
|
using System;
|
||
|
|
||
|
namespace Fie.Manager
|
||
|
{
|
||
|
[Flags]
|
||
|
public enum FieManagerExistSceneFlag
|
||
|
{
|
||
|
ANYTIME_DESTROY = 0x1,
|
||
|
OUTGAME = 0x2,
|
||
|
INGAME = 0x4,
|
||
|
NEVER_DESTROY = 0x8
|
||
|
}
|
||
|
}
|