~registry/flses/trunk

« back to all changes in this revision

Viewing changes to classes/flses/wrapper.php

  • Committer: Fabian Thoma
  • Date: 2009-06-06 14:43:01 UTC
  • Revision ID: fabian.thoma@yahoo.de-20090606144301-9tc29bom162eqdzw
+GNU GPL v3 Message
+development in Bank feature
+setrep function in FLHook class

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<?php
2
 
include_once "./classes/flses/Home.php";
3
 
include_once "./classes/flses/Bank.php";
4
 
include_once "./classes/flses/Depot.php";
5
 
include_once "./classes/flses/Clan.php";
6
 
 
7
 
class Wrapper
8
 
{
9
 
        public $home;
10
 
        public $bank;
11
 
        public $depot;
12
 
        public $clan;
13
 
        
14
 
        public function __construct()
15
 
        {
16
 
                $home = new Home();
17
 
                $bank = new Bank();
18
 
                $depot = new Depot();
19
 
                $clan = new Clan();
20
 
        }
21
 
}
22
 
 
23
 
?>