mirror of
https://github.com/XCharts-Team/XCharts.git
synced 2026-05-16 13:21:36 +00:00
27 lines
761 B
C#
27 lines
761 B
C#
/************************************************/
|
|
/* */
|
|
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
/* https://github.com/monitor1394 */
|
|
/* */
|
|
/************************************************/
|
|
|
|
using UnityEditor;
|
|
using UnityEditor.Build;
|
|
|
|
namespace XCharts
|
|
{
|
|
[System.Obsolete]
|
|
public class XChartsBuild : IPreprocessBuild, IPostprocessBuild
|
|
{
|
|
public int callbackOrder { get { return 1; } }
|
|
|
|
public void OnPostprocessBuild(BuildTarget target, string path)
|
|
{
|
|
}
|
|
|
|
public void OnPreprocessBuild(BuildTarget target, string path)
|
|
{
|
|
XThemeMgr.ExportAllCustomTheme();
|
|
}
|
|
}
|
|
} |