From 2e256e95a2ce1cf34638cb72090e525ae599c161 Mon Sep 17 00:00:00 2001 From: Miteruzo Date: Tue, 20 Jun 2023 06:43:14 +0900 Subject: [PATCH] =?UTF-8?q?=E3=81=AF=E3=81=98=E3=81=BE=E3=82=8A=E3=81=AE?= =?UTF-8?q?=E5=A4=A7=E5=9C=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- android/.gitignore | 5 +++++ android/main.hsp | 17 +++++++++++++++++ 2 files changed, 22 insertions(+) create mode 100644 android/.gitignore create mode 100644 android/main.hsp diff --git a/android/.gitignore b/android/.gitignore new file mode 100644 index 0000000..1892817 --- /dev/null +++ b/android/.gitignore @@ -0,0 +1,5 @@ +/hscl.ini +/main.ax +/main.cpp +/obj + diff --git a/android/main.hsp b/android/main.hsp new file mode 100644 index 0000000..6c507ef --- /dev/null +++ b/android/main.hsp @@ -0,0 +1,17 @@ +#include "hsp3dish.as" + + + SetClS CLSMODE_SOLID, $000000 + + Repeat + ReDraw False + Color 255, 255, 255 + BoxF + + Color 0, 0, 0 + Print "Hello, world!!" + ReDraw True + + Await 33 + Loop +