summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/Script/XSkillGen/SkillGenTemplate.txt
blob: 21dcd221cc6f936f12c90fbb27e3aa4464b3da2a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System;
using XUtliPoolLib;
using UnityEngine;

namespace XMainClient
{
    internal partial class %(class_name)s
    {
        public static bool %(method_name)s(XSkill skill)
        {
			//To do... add script here

            return true;
        }
    }
}