1
0
KF2-Dev-Scripts/Engine/Classes/UIDataStore_StringBase.uc
2020-12-13 18:01:13 +03:00

15 lines
429 B
Ucode

/**
* Base class for all string data stores. String data stores provide the game with access to strings in various forms,
* such as localized strings, input key button names, or lists of strings for use by the online subsystem.
*
* Copyright 1998-2013 Epic Games, Inc. All Rights Reserved.
*/
class UIDataStore_StringBase extends UIDataStore
native(inherit)
abstract;
DefaultProperties
{
Tag=StringBase
}