Skip to content
Snippets Groups Projects
RenderSettingPreset.cs 272 B
Newer Older
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class RenderSettingPreset : IRenderSettingPreset {

	private string name;

	public string GetName() {
		return name;
	}

	public void SetName(string name) {
		this.name = name;
	}
}