|
using Godot;
|
|
using System.Reflection;
|
|
using System.Collections.Generic;
|
|
|
|
using Rokojori.Extensions;
|
|
namespace Rokojori
|
|
{
|
|
[Tool]
|
|
[GlobalClass]
|
|
public partial class ShaderPropertyBlock : Resource
|
|
{
|
|
[Export]
|
|
public ShaderProperty[] shaderProperties = [];
|
|
}
|
|
} |