SquirrelJME/SquirrelJME

View on GitHub
modules/vendor-api-vodafone/src/main/java/com/vodafone/v10/graphics/j3d/Texture.java

Summary

Maintainability
A
0 mins
Test Coverage
// -*- Mode: Java; indent-tabs-mode: t; tab-width: 4 -*-
// ---------------------------------------------------------------------------
// SquirrelJME
//     Copyright (C) Stephanie Gawroriski <xer@multiphasicapps.net>
// ---------------------------------------------------------------------------
// SquirrelJME is under the Mozilla Public License Version 2.0.
// See license.mkd for licensing and copyright information.
// ---------------------------------------------------------------------------

package com.vodafone.v10.graphics.j3d;

import cc.squirreljme.runtime.cldc.annotation.Api;
import cc.squirreljme.runtime.cldc.debug.Debugging;
import java.io.IOException;

@Api
public class Texture
{
    @Api
    public Texture(byte[] var1, boolean var2)
    {
        throw Debugging.todo();
    }
    
    @Api
    public Texture(String var1, boolean var2)
        throws IOException
    {
        throw Debugging.todo();
    }
}