mirror of
https://github.com/lxsang/Diya-API.git
synced 2024-12-26 11:28:22 +01:00
14 lines
286 B
Smalltalk
14 lines
286 B
Smalltalk
Class {
|
|
#name : #DiyaBaseApplication,
|
|
#superclass : #DiyaApplicationModel,
|
|
#category : #'Diya-Applications'
|
|
}
|
|
|
|
{ #category : #initialization }
|
|
DiyaBaseApplication >> initialize [
|
|
super initialize.
|
|
node := DiyaCompositeNode new.
|
|
node styleName: #global.
|
|
am := AssetManager new.
|
|
]
|