b15f3b7391
Need to implement: Slider and logic for it and UI and the logic for that as well.
16 lines
313 B
C#
16 lines
313 B
C#
|
|
using System;
|
|
using UnityEngine.Scripting;
|
|
|
|
namespace Proxima
|
|
{
|
|
[AttributeUsage(AttributeTargets.Method)]
|
|
internal class ProximaInitializeAttribute : PreserveAttribute
|
|
{
|
|
}
|
|
|
|
[AttributeUsage(AttributeTargets.Method)]
|
|
internal class ProximaTeardownAttribute : PreserveAttribute
|
|
{
|
|
}
|
|
} |