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