Ed_
595de438af
I wasn't expecting it to be this to bad to support it... Also: * I renamed some of the files to group better with the virtual codebase view
27 lines
430 B
Odin
27 lines
430 B
Odin
package sectr
|
|
|
|
/*
|
|
Project: Encapsulation of all things a user can do separate from the core app behavior
|
|
that is managed independetly of it.
|
|
*/
|
|
|
|
// PMDB
|
|
CodeBase :: struct {
|
|
placeholder : int,
|
|
}
|
|
|
|
ProjectConfig :: struct {
|
|
placeholder : int,
|
|
}
|
|
|
|
Project :: struct {
|
|
path : StrRunesPair,
|
|
name : StrRunesPair,
|
|
|
|
config : ProjectConfig,
|
|
codebase : CodeBase,
|
|
|
|
// TODO(Ed) : Support multiple workspaces
|
|
workspace : Workspace,
|
|
}
|