33 lines
746 B
C#
33 lines
746 B
C#
// ***********************************************************************
|
|
// Assembly : Game
|
|
// Author : Kimch
|
|
// Created : 2022-02-16
|
|
// Description :
|
|
// Last Modified By :
|
|
// Last Modified On :
|
|
// ***********************************************************************
|
|
// <copyright file= "Activity" company="Kunpo"></copyright>
|
|
// <summary></summary>
|
|
// ***********************************************************************
|
|
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
namespace G
|
|
{
|
|
/// <summary>
|
|
/// 活动基类
|
|
/// </summary>
|
|
public class Activity
|
|
{
|
|
#region Field
|
|
|
|
#endregion
|
|
|
|
#region Method
|
|
|
|
#endregion
|
|
}
|
|
}
|