Ignore:
Timestamp:
Sep 3, 2018, 7:11:10 PM (6 years ago)
Author:
alloc
Message:

A17 compatibility changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • binary-improvements/7dtd-server-fixes/src/FileCache/AbstractCache.cs

    r199 r324  
    1 using System;
    2 using System.Collections.Generic;
     1namespace AllocsFixes.FileCache {
     2    public abstract class AbstractCache {
     3        public AbstractCache () {
     4        }
    35
    4 namespace 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         }
     6        public abstract byte[] GetFileContent (string filename);
     7    }
    168}
    17 
Note: See TracChangeset for help on using the changeset viewer.