2022-07-25 08:04:16 +00:00
|
|
|
using System.Collections;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using UnityEngine;
|
|
|
|
|
2022-08-09 15:23:17 +00:00
|
|
|
namespace HeavenStudio.Games.Scripts_TramAndPauline
|
2022-07-25 08:04:16 +00:00
|
|
|
{
|
2022-08-09 15:23:17 +00:00
|
|
|
public class Trampoline : MonoBehaviour
|
2022-07-25 08:04:16 +00:00
|
|
|
{
|
2022-08-09 15:23:17 +00:00
|
|
|
// Start is called before the first frame update
|
|
|
|
void Start()
|
|
|
|
{
|
2022-07-25 08:04:16 +00:00
|
|
|
|
2022-08-09 15:23:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Update is called once per frame
|
|
|
|
void Update()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
2022-07-25 08:04:16 +00:00
|
|
|
}
|
2022-08-09 15:23:17 +00:00
|
|
|
}
|