Started building a Tinychat API wrapper

This commit is contained in:
Josh Sherman 2011-08-13 01:18:00 -04:00
parent cc778981f6
commit d6fc14e293
3 changed files with 1407 additions and 0 deletions

16
classes/API/Common.php Normal file
View file

@ -0,0 +1,16 @@
<?php
class API_Common extends Object
{
public function __construct()
{
parent::__construct();
}
public function __destruct()
{
parent::__destruct();
}
}
?>