TouchDevelop/libwab/ArtCache.ts

12 строки
250 B
TypeScript
Исходник Обычный вид История

2015-02-05 00:41:44 +03:00
///<reference path='refs.ts'/>
module TDev.RT.Wab {
export function ArtCacheInit()
{
ArtCache.getMaxItems = ArtCacheWab.getMaxItems;
}
export module ArtCacheWab {
export function getMaxItems() { return 500; }
}
}