From 5b3bad316cb03c35ee8782e67eb54436f4885f40 Mon Sep 17 00:00:00 2001 From: RupioNotePC Date: Tue, 17 Oct 2017 21:58:54 +0900 Subject: [PATCH] =?UTF-8?q?Main.cs=E3=82=92=E4=BD=9C=E3=81=A3=E3=81=A6?= =?UTF-8?q?=E3=80=8C=E3=81=86=E3=81=95=E3=81=8E3D=E3=83=97=E3=83=AD?= =?UTF-8?q?=E3=82=B8=E3=82=A7=E3=82=AF=E3=83=88=E4=BD=9C=E6=88=90=E4=B8=AD?= =?UTF-8?q?=E3=80=82=E3=80=8D=E3=81=A8=E3=81=84=E3=81=86=E6=96=87=E3=82=92?= =?UTF-8?q?Console=E3=81=AB=E8=A1=A8=E7=A4=BA=E3=81=99=E3=82=8B=E6=96=87?= =?UTF-8?q?=E3=82=92=E8=A8=98=E8=BF=B0=E3=81=97=E3=81=9F=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Assets/Scripts/Main.cs | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Assets/Scripts/Main.cs diff --git a/Assets/Scripts/Main.cs b/Assets/Scripts/Main.cs new file mode 100644 index 0000000..c440967 --- /dev/null +++ b/Assets/Scripts/Main.cs @@ -0,0 +1,17 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; + +public class Main : MonoBehaviour { + + // Use this for initialization + void Start () { + Debug.Log ("うさぎ3Dプロジェクト作成中。"); + + } + + // Update is called once per frame + void Update () { + + } +}