yyl
2025-06-13 eb1efcaa9be0e2340fc49b38dab8df18e36526c9
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)
    {
        
    }
}