mirror of
https://github.com/FriendshipIsEpic/FiE-Game.git
synced 2025-02-20 20:34:22 +01:00
19 lines
433 B
C#
19 lines
433 B
C#
|
using System;
|
||
|
|
||
|
namespace Fie.Scene
|
||
|
{
|
||
|
[AttributeUsage(AttributeTargets.Class, AllowMultiple = false, Inherited = true)]
|
||
|
public class FieSceneLink : Attribute
|
||
|
{
|
||
|
public readonly FieConstValues.DefinedScenes linkedScene;
|
||
|
|
||
|
public readonly FieSceneType definedSceneType;
|
||
|
|
||
|
public FieSceneLink(FieConstValues.DefinedScenes linkScene, FieSceneType sceneType)
|
||
|
{
|
||
|
linkedScene = linkScene;
|
||
|
definedSceneType = sceneType;
|
||
|
}
|
||
|
}
|
||
|
}
|