Cog/Plugins/GME/GamePlugin.m

27 lines
514 B
Mathematica
Raw Normal View History

2007-10-11 19:11:58 -04:00
//
// 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 "GamePropertiesReader.h"
@implementation GamePlugin
+ (NSDictionary *)pluginInfo
{
return [NSDictionary dictionaryWithObjectsAndKeys:
kCogContainer, [GameContainer className],
kCogDecoder, [GameDecoder className],
kCogPropertiesReader, [GamePropertiesReader className],
nil];
}
@end