source: binary-improvements/7dtd-server-fixes/src/FileCache/AbstractCache.cs@ 251

Last change on this file since 251 was 199, checked in by alloc, 10 years ago

fixes

File size: 225 bytes
Line 
1using System;
2using System.Collections.Generic;
3
4namespace AllocsFixes.FileCache
5{
6 public abstract class AbstractCache
7 {
8
9 public AbstractCache ()
10 {
11 }
12
13 public abstract byte[] GetFileContent (string filename);
14
15 }
16}
17
Note: See TracBrowser for help on using the repository browser.