rokojori_action_library/Runtime/Procedural/Textures/TextureCombiner/TextureCombinerProcessingCo...

18 lines
287 B
C#
Raw Normal View History

2025-02-14 07:44:20 +00:00
using System.Collections;
using System.Collections.Generic;
using Godot;
using System;
2026-05-22 12:25:02 +00:00
using Rokojori.Extensions;
2025-02-14 07:44:20 +00:00
namespace Rokojori
{
public class TextureCombinerContext
{
public TextureCombiner combiner;
public int imageWidth = 0;
public int imageHeight = 0;
}
}