1234567891011121314 |
- using System.Collections;
- using System.Collections.Generic;
- using UnityEngine;
- namespace TFramework
- {
- public class CreateGeneralScript : DoCreateScriptAsset
- {
- public override string ReplaceTemplateContent(string className, string templateContent)
- {
- return templateContent.Replace("#ClassName", className);
- }
- }
- }
|