3dphotoshoot

diff src/android/MainActivity.java @ 0:a4bf2687e406

3d photoshoot initial commit
author John Tsiombikas <nuclear@member.fsf.org>
date Tue, 12 May 2015 05:31:21 +0300
parents
children 7eb73ce46dd0
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/src/android/MainActivity.java	Tue May 12 05:31:21 2015 +0300
     1.3 @@ -0,0 +1,11 @@
     1.4 +package com.mutantstargoat.photoshoot3d;
     1.5 +
     1.6 +import android.app.NativeActivity;
     1.7 +import android.util.Log;
     1.8 +
     1.9 +public class MainActivity extends NativeActivity {
    1.10 +	final public void foo(String s, int n)
    1.11 +	{
    1.12 +		Log.i("3DPS", s + ": " + n);
    1.13 +	}
    1.14 +}