mirror of
https://github.com/thestk/stk
synced 2026-01-11 20:11:52 +00:00
24 lines
585 B
C++
24 lines
585 B
C++
/*******************************************/
|
|
/* Object Class, by Perry R. Cook, 1995-96*/
|
|
/* This is mostly here for compatibility */
|
|
/* with Objective C. We'll also stick */
|
|
/* global defines here, so everyone will */
|
|
/* see them. */
|
|
/*******************************************/
|
|
|
|
#include "Object.h"
|
|
// #include "byteswap.c"
|
|
|
|
/* This is just here for compatibility and convenience,
|
|
so there's no need to do any real calculations.
|
|
I do set up some redefinable variables here. */
|
|
|
|
Object :: Object()
|
|
{
|
|
}
|
|
|
|
Object :: ~Object()
|
|
{
|
|
}
|
|
|