Elin Decompiled Documentation EA 23.344.1 Nightly
Loading...
Searching...
No Matches
CustomObjContent.cs
Go to the documentation of this file.
2{
3 public override string SourceType => "SourceObj";
4
5 public static CustomObjContent CreateFromRow(SourceObj.Row r, ModPackage owner = null)
6 {
7 if (owner == null)
8 {
9 owner = ModUtil.FindSourceRowPackage(r);
10 }
11 return new CustomObjContent
12 {
13 ContentId = "Obj/" + r.alias,
14 SourceId = r.alias,
15 Owner = owner
16 };
17 }
18}
string ContentId
Definition: CustomContent.cs:6
static CustomObjContent CreateFromRow(SourceObj.Row r, ModPackage owner=null)
override string SourceType