1 #region Copyright & License Information
2 /*
3  * Copyright 2007-2020 The OpenRA Developers (see AUTHORS)
4  * This file is part of OpenRA, which is free software. It is made
5  * available to you under the terms of the GNU General Public License
6  * as published by the Free Software Foundation, either version 3 of
7  * the License, or (at your option) any later version. For more
8  * information, see COPYING.
9  */
10 #endregion
11 
12 namespace OpenRA
13 {
14 	public interface ICacheStorage<T>
15 	{
Remove(string key)16 		void Remove(string key);
Store(string key, T data)17 		void Store(string key, T data);
Retrieve(string key)18 		T Retrieve(string key);
19 	}
20 }
21