My favorites | Sign in
Project Logo
                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package configuration {
internal class ConfigurationImplementation implements Configuration {
private var _display:DisplayConfiguration;
private var _sound:SoundConfiguration;

public function ConfigurationImplementation():void {
_display = new DisplayConfigurationImplementation();
_sound = new SoundConfigurationImplementation();
}

public function get display():DisplayConfiguration {
return _display;
}

public function get sound():SoundConfiguration {
return _sound;
}
}
}
Show details Hide details

Change log

r9 by malterisio777 on Dec 23, 2008   Diff
Use examples of the singleton pattern in
actionscript 3
Go to: 
Project members, sign in to write a code review

Older revisions

All revisions of this file

File info

Size: 536 bytes, 19 lines
Hosted by Google Code