1
0
KF2-Dev-Scripts/Engine/Classes/BookMark2D.uc

23 lines
347 B
Ucode
Raw Normal View History

2020-12-13 15:01:13 +00:00
/**
* Copyright 1998-2013 Epic Games, Inc. All Rights Reserved.
*
* Simple class to store 2D camera information.
*/
class BookMark2D extends Object
hidecategories(Object)
native;
/** Zoom of the camera */
var() float Zoom2D;
/** Location of the camera */
var() intpoint Location;
cpptext
{
}
defaultproperties
{
}