Nicklas Bourelius b15f3b7391 Color now working.
Need to implement: Slider and logic for it and UI and the logic for that as well.
2024-05-23 18:36:51 +02:00

19 lines
370 B
C#

using System.Collections.Generic;
using System;
using UnityEngine;
namespace Proxima
{
public class ProximaStatic : ScriptableObject
{
[Serializable]
public struct StaticFile
{
public string Path;
public byte[] Bytes;
public long LastModified;
}
public List<StaticFile> Files;
}
}