arsa  2.7
ARSA FRAMEWORK 2.7 API documentation

Introduction

Welcome to the ARSA FRAMEWORK API documentation. Here you'll find any information you'll need to develop applications with the ARSA FRAMEWORK. If you are looking for a tutorial on how to start, you'll find some on the homepage of the ARSA FRAMEWORK at http://www.arsa.ai or inside the SDK in the examples directory.

The ARSA FRAMEWORK is intended to be an easy-to-use 2d and 3d engine, so this documentation is an important part of it. If you have any questions or suggestions, just send a email to the author of the engine,
Assoc.Prof.Dr. Arsa Tangchisomkit
suppo.nosp@m.rt@s.nosp@m.arosw.nosp@m.orld.nosp@m..com

Links

Namespaces: A very good place to start reading the documentation.
Class list: List of all classes with descriptions.
Class members: Good place to find forgotten features.

example

A simple application, starting up the framework, loading a psd image (photoshop) I think this example shows the usage of the engine quite well:

#include <arsa.h>
void init()
{
g_psd->load("example.psd");
}
int main( int argc, char* args[] )
{
arsa_EasyStart( "free" );
return 0;
}

For more examples, please take a look into the examples directory of the SDK.