Samples
Samples
JetBoy
Language: Oxygene, Platform: Cooper, Category: Android
https://github.com/remobjects/ElementsSamples/tree/master/Oxygene/Cooper/Android/JetBoy
-
com.example.android.jetboy
-
References
- android
- Source Files
-
Other Files
- res\values\strings.android-xml
- Properties\AndroidManifest.android-xml
- JETBOY_content_README.txt
- NOTICE
- Readme.txt
- res\drawable\asteroid01.png
- res\drawable\asteroid02.png
- res\drawable\asteroid03.png
- res\drawable\asteroid04.png
- res\drawable\asteroid05.png
- res\drawable\asteroid06.png
- res\drawable\asteroid07.png
- res\drawable\asteroid08.png
- res\drawable\asteroid09.png
- res\drawable\asteroid10.png
- res\drawable\asteroid11.png
- res\drawable\asteroid12.png
- res\drawable\asteroid_explode1.png
- res\drawable\asteroid_explode2.png
- res\drawable\asteroid_explode3.png
- res\drawable\asteroid_explode4.png
- res\drawable\background_a.png
- res\drawable\background_b.png
- res\drawable\icon.png
- res\drawable\intbeam_1.png
- res\drawable\intbeam_2.png
- res\drawable\intbeam_3.png
- res\drawable\intbeam_4.png
- res\drawable\int_timer.png
- res\drawable\laser.png
- res\drawable\ship2_1.png
- res\drawable\ship2_2.png
- res\drawable\ship2_3.png
- res\drawable\ship2_4.png
- res\drawable\ship2_hit_1.png
- res\drawable\ship2_hit_2.png
- res\drawable\ship2_hit_3.png
- res\drawable\ship2_hit_4.png
- res\drawable\title_bg_hori.png
- res\drawable\title_hori.png
- res\layout\main.layout-xml
- res\raw\level1.jet
- res\values\styles.android-xml
-
References
Asteroid.pas
namespace com.example.android.jetboy;
{*
* Copyright (C) 2007 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*}
interface
type
Asteroid = public class
public
var mAniIndex: Integer := 0;
var mDrawY: Integer := 0;
var mDrawX: Integer := 0;
var mExploding: Boolean := false;
var mMissed: Boolean := false;
var mStartTime: Int64 := 0;
end;
implementation
end.
