16 lines
300 B
C#
16 lines
300 B
C#
![]() |
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using Godot;
|
||
|
using System;
|
||
|
using System.Threading.Tasks;
|
||
|
|
||
|
namespace Rokojori
|
||
|
{
|
||
|
public class Images
|
||
|
{
|
||
|
public void Save( Image img, string path, ImageSaveSettings saveSettings )
|
||
|
{
|
||
|
saveSettings.Save( img, path );
|
||
|
}
|
||
|
}
|
||
|
}
|