Cog/Plugins/GME/GamePlugin.m
vspader c536ea06a5 Removed useless PropertiesReader classes.
PluginController now uses the decoder if a properties reader class is not found.
PropertiesReaders should still be created if performance can be improved if code is only reading properties.
2007-10-14 17:31:20 +00:00

26 lines
508 B
Objective-C

//
// GamePlugin.m
// GME
//
// Created by Vincent Spader on 10/11/07.
// Copyright 2007 __MyCompanyName__. All rights reserved.
//
#import "GamePlugin.h"
#import "GameContainer.h"
#import "GameDecoder.h"
#import "GameMetadataReader.h"
@implementation GamePlugin
+ (NSDictionary *)pluginInfo
{
return [NSDictionary dictionaryWithObjectsAndKeys:
kCogContainer, [GameContainer className],
kCogDecoder, [GameDecoder className],
kCogMetadataReader, [GameMetadataReader className],
nil];
}
@end