14 lines
309 B
14 lines
309 B
5 years ago
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using UnityEngine;
|
||
|
|
||
|
/// <summary>
|
||
|
/// 作战部署车辆图标同步数据类
|
||
|
/// </summary>
|
||
|
public class FireDeployCarSYNCData : FireDeploySYNCDATA
|
||
|
{
|
||
|
public Organization org;
|
||
|
public FireCarEngine fireCarEngine;
|
||
|
public Color color;
|
||
|
}
|