hch
2025-06-19 5022f4efe76121df33dc81249befa7556e535418
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
 
using System.Collections.Generic;
using System;
using UnityEngine;
 
public class BattleObjectFactory
{
    public static BattleObject CreateBattleObject(TeamHero teamHero)
    {
        BattleObject battleObject = null;
        // switch (teamCard.cardInfo.cardConfig.)
        // {
 
        // }
 
        return battleObject;
    }
 
    public static void DestroyBattleObject(BattleObject battleObj)
    {
        
    }
}