mirror of
https://github.com/FriendshipIsEpic/FiE-Game.git
synced 2025-02-18 11:24:22 +01:00
18 lines
433 B
C#
18 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;
|
|
}
|
|
}
|
|
}
|