22 lines
459 B
C#
22 lines
459 B
C#
//----------------------------------------------
|
|
// Realistic Car Controller
|
|
//
|
|
// Copyright © 2014 - 2023 BoneCracker Games
|
|
// https://www.bonecrackergames.com
|
|
// Buğra Özdoğanlar
|
|
//
|
|
//----------------------------------------------
|
|
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
/// <summary>
|
|
/// Version of the RCC.
|
|
/// </summary>
|
|
public class RCC_Version {
|
|
|
|
public const string version = "V3.70";
|
|
|
|
}
|