25 lines
662 B
C#
25 lines
662 B
C#
// ***********************************************************************
|
|
// Assembly : Unity
|
|
// Author : Kimch
|
|
// Created : 2017-11-02
|
|
//
|
|
// Last Modified By : Kimch
|
|
// Last Modified On :
|
|
// ***********************************************************************
|
|
// <copyright file= "IndicatorBox" company=""></copyright>
|
|
// <summary></summary>
|
|
// ***********************************************************************
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
|
|
namespace G.UI
|
|
{
|
|
public partial class IndicatorBox
|
|
{
|
|
public float GetRotateSpeed()
|
|
{
|
|
return 16f;
|
|
}
|
|
}
|
|
}
|