我有一个为一堆图形加载绘图代码的类。它有点像这样:
if (type == RabbitGraphic)
{
//a whole bunch of drawing code gets loaded into an object
}
else if (type == FrogGraphic)...
这个文件变得很长,我添加了更多的图形,编译/加载文件需要一段时间。我想知道,有没有一种方法可以将这些图形拆分为单独的文件而无需创建新对象?IE 是否有一些我可以做的机制:
if (type == RabbitGraphic)
{
load file that has rabbit graphic code
}